(转)B是A的子类,那么A a=new B();4不像的产生

问:B是A的子类,那么A a=new B();这样有什么意义,请赐教

答:B是A的子类,用A a=new B(),这样定义一个"a", 只能使用B中继承A中的方法或变量,而在B中新增的方法或者变量,"a"不能引用。(也就是 a只能使用B复写A中的方法或者变量)

希望对你理解更有些帮助~

你错在这句话 "而在B中新增的方法或者变量,"a"不能引用"
"a"引用的就是B中的方法 实验程序如下:
class A{
  public void paint()
  {
    System.out.println("this is A");
  }
}

class B extends A{
  public void paint()
  {
    System.out.println("this is B");
    
  }
}
public class Test{
  public static void main(String args[])
  {
    A a=new B();
    a.paint();
    B b=(B) a;
    b.paint();
  }
}
输出的是:this is B
this is B
而不是:this is A
this is B
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值