class person
{
String name;//实例变量
static String country="cn";//类变量
public static void show()
{
System.out.println(name+" "+country);
}
}
class personDemo5
{
public static void main(String args[])
{
//person p=new person();
//p.name="zhangsan";
//p.show();
System.out.println(person.country);//先于对象存在,随着类的加载而存在
person.show(); //可以直接用类名来调用 被所以对象所共享 存在于方法区中
}
} |
|