class Person
{
String name;
static String country = "cn";//共享数据
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);//新的调用方式,不用建立类
}
}