本帖最后由 付玉光 于 2013-3-11 11:59 编辑
{:soso_e100:}//这个题,没有什么可用文字表达的,直接上代码就能说明。
class BB {
int test = 10;
void printTest(){
int test = 20;
System.out.println("test "+ test);
}
public static void main(String args[]){
BB b = new BB();
b.printTest();
}
}
class B1 {
int test = 10;
void printTest(){
int test = 20;
System.out.println("test "+ test);
}
public static void main(String args[]){
B1 b = new B1();
b.printTest();
//类中的成员属性,得通过对象来调用!
System.out.println("test "+b.test);
}
} |