- class Person
- {
- String name;
- static String country="CN";
- public static void show()
- {
- System.out.println("name="+name+","+"country="+country);
- }
- }
- class StaticDemo
- {
- public static void main(String[] args)
- { Person p=new Person();
- p.show();
- System.out.println(Person.country);
- }
- }
-
复制代码 代码中的p.show()为什么无法引用name,这里的对象已经生成了啊,即使name没有值也应该显示null啊?为什?哪的问题? |
|