class Person
{
String name;//成员变量,实例变量(创建对象后其才存在)
static String country = "CN";//静态的成员变量,类变量,存于共享区,当Person类加载到内存中时,静态的country随其加载,并一直存在,直到Person类消失才一起消失。
public void show()
{
System.out.println(name+"...."+country);
}
}
class StaticDemo
{
public static void main(String[] args)
{
Person p = new Person();
p.name = "zhangsan";
p.show();
//System.out.println(Person.country);//可以被类名直接调用
}
}
class Person
{
String name;
public static void show()
{
System.out.println("haha");//未访问name,可以静态。
}
}
class
{
public static void main(String[] args)
{
//Person p = new Person();
//p.show();
Person.show();//可以直接类名调用
}
} 作者: 刘学宾 时间: 2012-10-23 10:40
顶起来。作者: 梁枝武 时间: 2012-10-23 13:33