引用类型变量的转型

class Animal
{
    private String name;
    Animal(String name)
    {
        this.name = name;
    }
}
class Dog extends Animal
{
    private String furColor;
    Dog(String name,String furColor)
    {
        super(name);
        this.furColor = furColor;
    }
    void laugh(Animal a)
    {
        if(a instanceof Dog)
        {
            Dog d = (Dog)a;
            System.out.println("furColor is "+d.furColor+"'s dog " +"laughs");
        }
    }
}
class Cat extends Animal
{
    private String eyeColor;
    Cat(String name,String eyeColor)
    {
        super(name);
        this.eyeColor = eyeColor;
    }
    void laugh(Animal a)
    {
        if(a instanceof Cat)
        {
            Cat c = (Cat)a;
            System.out.println("eyeColor is "+c.eyeColor+"'s cat " +"laughs");
        }
    }
}
public class TestCasting
{
    public static void main(String[] args)
    {
        Animal a = new Animal("Animal");
        Dog d = new Dog("Dog","yellow");
        Cat c = new Cat("Cat","blue");
        //a.laugh();
        Dog d1 = new Dog("Dog1","black");
        d.laugh(d1);
        c.laugh(c);
    }
}
/*
总结:
1.对象转型可以提高程序的扩展性
2.父类引用可以指向子类对象,但是父类只能访问子类从父类继承来的东西
而不能访问子类所特有的
3.转型(casting)
upcasting和downcasting
*/
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值