标签:
静态:staticclass Person
{
String name;
static String country="CN";
public static void show(){
System.out.println(country+"::::");
}
}
class StaticDemo
{
public static void main(String[] args)
{
//System.out.println(Person.country);
//Person.show();
Person p1 = new Person();
System.out.println(p1.name);
}
}标签:
原文地址:http://blog.csdn.net/iemdm1110/article/details/51344575