![]()
/**
* @author subeiLY
* @create 2021-05-25 10:46
*/
public class Demo06 {
static int allClicks = 0; // 类变量
String str = "hello world"; // 实例变量
public void method(){
int i = 0; // 局部变量
}
public static void main(String[] args) {
// int a,b,c;
// int a=1,b=2,c=3;
String name = "wahaha";
char x = 'X';
double pi = 3.14;
}
}
![]()
/**
* @author subeiLY
* @create 2021-05-25 10:52
*/
public class Demo07 {
// 类变量 static
static double salary = 2500;
// 属性:变量
// 实例变量:从属于对象:实例变量:从属于对象;如果不自行初始化,这个类型的默认值 0 0.0
// 布尔值:默认是 faLse
// 除了基本类型,其余的都是null
String name;
int age;
// main 方法
public static void main(String[] args) {
// 局部变量:必须声明和初始化值
int i = 10;
System.out.println(i);
// 变量类型 变量名字 = new Demo08();
Demo07 demo07 = new Demo07();
System.out.println(demo07.age);
System.out.println(demo07.name);
// 类变量 static
System.out.println(salary);
}
// 其他方法
public void add(int i){
System.out.println(i);
}
}
![]()
/**
* @author subeiLY
* @create 2021-05-25 14:45
*/
public class Demo08 {
// 修饰符,不存在先后顺序
static final double PI = 3.14;
public static void main(String[] args) {
System.out.println(PI);
}
}
![]()