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 = "北京"; } }