public class StaticTest {
public static void main(String[] args) {
System.out.println(StaticTest.country);
System.out.println(StaticTest.province);
}
static {
country = "美国";
}
private static String country = "中国";
private static String province = "山东";
static {
province = "北京";
}
}
转载于:https://my.oschina.net/u/590649/blog/115941