class Demo1_Static {
public static void main(String[] args) {
Person.country = "日本";
System.out.println(Person.country);
}
}
class Person {
String name;
static String country;
}
Static静态只能访问静态成员,意思是不是只能主函数访问其他类的静态成员变量.如果想要访问非静态成员变量,是不是就要创建对象去访问?
如果是main函数访问一个其他静态类时,是否可以访问其中的非静态成员变量呢?比如上面的person改成static class person的时候,可以访问其name吗?
|
|