• 变量
public class Variable{
    static int allClicks = 0;  //类变量
    String str = "hello world";  //实例变量
    
    public void method(){
        int i = 0;   //局部变量
    }
}
public class Demo08 {
​
    //类变量 static
    static double  salary = 2500;
​
    //属性:变量
​
    //实例变量:从属于对象;  如果不自信不初始化,使用这个类型的初始值
    //布尔型:默认值是false
    //除了(8个)基本类型,其余的默认值都是null
    String name;
    int age;
​
    //main方法
    public static void main(String[] args) {
​
        //局部变量:必须声明和初始化
        int i = 10;
        System.out.println(i);
​
        //实例变量的调用方法:
        // 变量类型  变量名字 = new Demo08();
           Demo08 demo08 = new Demo08();
        System.out.println(demo08.age);  //默认值0
        System.out.println(demo08.name);  //默认值null
​
        System.out.println(salary);  //2500.0
​
    }
    //其他方法
    public void add(){
​
    }
​
}
  • 常量
    常量(Constant):初始化(initialize)后不能改变的值!不会变动的值,他的值被设定后,在程序运行过程中不允许被改变。
final  类型  常量名 = 值;
final double PI = 3.14; 

常量一般使用大写字符

public class Demo09 {
​
    //修饰符,不存在先后顺序
    static final double PI = 3.14;
​
    public static void main(String[] args) {
        System.out.println(PI);
    }
}