Java变量和常量
变量
-
变量要素包括:变量名,变量类型,作用域。
-
变量作用域:类变量(static),实例变量(没有static),局部变量(写在方法中)
//类中可以定义属性(变量) static double salary = 2500; //实例变量:从属于对象;如果不自行初始化, // 这个类型的默认值为 // int 0,float 0.0 ,char u0000 ,boolean flase,其他都是null int age; String name; //main方法 public static void main(String[] args) { //局部变量:使用前必须声明和初始化(赋值) //例: int i = 10; System.out.println(i); //变量类型 变量名字 = new 类名() Demo04 Demo04 =new Demo04(); System.out.println(Demo04.age); System.out.println(Demo04.name); //类变量 含有static System.out.println(salary); }
常量
常量一般大写
//修饰符不存在先后顺序
static final double PI = 3.14;
// =final static double PI = 3.14;
public static void main(String[] args) {
System.out.println(PI);
}