System.out.println("通过类名来访问静态变量:"+HelloWorld.className );
HelloWorld hello=new HelloWorld();
System.out.println("通过对象名来访问静态变量:"+hello.className);
hello.className="年薪过百万一班";
System.out.println("通过类名来访问静态变量:"+HelloWorld.className);
}
}
HelloWorld hello=new HelloWorld();
System.out.println("通过对象名来访问静态变量:"+hello.className);
hello.className="年薪过百万一班";
System.out.println("通过类名来访问静态变量:"+HelloWorld.className);
}
}
2015-10-29