java类全局变量、对象全局变量、类方法、对象方法、构造方法的区别
package lianxi;
public class test11_4 {
public static final int NUM=2;
static int b=10;
int a =22;
String name="张三";
public void info() {
System.out.println(this.a+"++"+this.name);
}
public static void sleep() {
}
public test11_4(String name,int a) {
this.name =name;
this.a=a;
}
public static void main(String[] args) {
int c =30;
test11_4 t1=new test11_4("qcby",3);
test11_4 t2=new test11_4("qc",4);
System.out.println(t1.a);
System.out.println(t1.name);
System.out.println(test11_4.NUM);
System.out.println(test11_4.b);
t1.info();
t2.info();
}
}