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