标签:字符 命名规范 main方法 调用 final java 布尔 使用 初始
type varName [=value] [{, varName[=value]}] ;
//数据类型 变量名 = 值; 可以使用逗号隔开来声明多个同类型变量,但不建议
例:
//int a,b,c;
//int a = 1, b = 2, c = 3;
//上面两种方式不建议使用,要注重程序的可读性
int a = 1;
int b = 2;
int c = 3;
String name = "guopengfei";
char x = ‘X‘;
double pi = 3.14;
注意事项:
main
方法,还可以定义其他方法public class Variable{
static int allClicks = 0; // 类变量
String str = "hello world"; // 实例变量
public void method(){
int i = 0; // 局部变量
}
}
//main方法
public static void main(String[] args) {
//局部变量:main方法大括号结束就失效了
// 必须声明变量和初始化值
int i = 10;
System.out.println(i);
}
//其他方法
public void add(){
//System.out.println(i);
//由于i是main中定义的局部变量,在其他方法中不生效
}
public class Demo {
//实例变量:从属于对象
String name;
int age;
//main方法
public static void main(String[] args) {
//实例变量
//变量类型 变量名字 = new Demo08;
Demo08 demo08 = new Demo08();
System.out.println(demo08.age);//0
System.out.println(demo08.name);//null
}
}
false
null
new
自身类,然后用``类名.变量名`调用public class Demo {
//类变量 static 类型 变量名 = 值;
static double salary = 2500;
//main方法
public static void main(String[] args) {
//类变量 static
System.out.println(salary);
}
}
new
static 类型 变量名 = 值;
例子如上final 数据类型 常量名 = 值;
final double PI = 3.14;
public
, private
, static
, final
......都是修饰词,不存在先后顺序public class Demo {
//final, static......都是修饰符,不存在先后顺序
final double PI = 3.14;
static final int width = 600;
final static int height = 300;
public final static int i = 1;
private final static char c = ‘c‘;
public static void main(String[] args) {
//System.out.println(PI);//不是类变量无法使用
System.out.println(width);
System.out.println(height);
System.out.println(i);
System.out.println(c);
}
}
《阿里巴巴Java开发手册》有对标识符命名规则的规定,虽然是阿里巴巴公司编写的,但对于我们有很重要的学习作用,百度云链接:提取码: xcbc
有关我之前写的标识符关键字的笔记
标签:字符 命名规范 main方法 调用 final java 布尔 使用 初始
原文地址:https://www.cnblogs.com/Gotta-This/p/13089676.html