java 靜態變量賦值

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 = "北京";
	}
}
相關文章
相關標籤/搜索