本帖最后由 孙百鑫 于 2013-6-27 07:06 编辑
问题:
class TestStatic { public static void main(String[] args) { Person.show(); } } class Person { static String country="中国"; String name; public static String show() { return country; } } 编译通过,运行也没问题,但为何打印不出静态成员country的赋值“中国”?(打印无结果)
|