标签:命名 不同 作用域 不同的 加载 main als hello 原则
public class Test{
int a;
static double b;
static char c;
public static void main(String[] args){
String s = "xu";
System.out.println(s);
System.out.println(b);
System.out.println(c);
Test t = new Test();
System.out.println(t.a);
}
}
/*
xu
0.0
0
*/
new Test.var------>Test t = new Test();
"hello".sout----->System.out.println("hello");
标签:命名 不同 作用域 不同的 加载 main als hello 原则
原文地址:https://www.cnblogs.com/xd-study/p/12829484.html