标题: 继承 [打印本页] 作者: zhangjiesss 时间: 2016-7-17 00:09 标题: 继承 public class TestA
{
int n=0;
int m=0;
}
public class TestB extends TestA
{
int n=0;
}
public class E
{
TestA testA;
public void Out(TestA testA)
{
System.out.println("n:"+testA.n);
System.out.println("m:"+testA.m);
}
}
public class TestE extends E
{
public static void main(String[] args)
{
TestE e= new TestE();
TestB testB =new TestB();
testB.m =128;
testB.n =128;
e.Out(testB);
}
}
输出结果
n:0
m:128