class person3
{
String name;//成员变量,实例变量
static String country="china";//静态的成员变量,类变量
public void show()
{
System.out.println(name+":"+country);
}
}
class staticDemo {
public static void main(String[] args) {
// TODO 自动生成的方法存根
person3 p=new person3();
//p.name="zhangsan";
//p.show();
System.out.println(p.country);
//System.out.println(person3.country)
; }
}