Java类型变化

复合情况
数组协变,泛型不变

    public static void testArrayAndList(){
//        B[] r1 = test(new ArrayList<B>());  编译错误,实参形参类型不匹配
//        A[] r2 = test(new ArrayList<B>()); 编译错误,实参形参类型不匹配
//        Object[] r3 = test(new ArrayList<Object>()); 编译错误,ArrayList<Object>和ArrayList<A>无任何关系,尽管A继承于Object

        A[] r4 = test(new ArrayList<A>());
        Object[] r5 = test(new ArrayList<A>());
    }

    public static A[] test(ArrayList<A> list){
        return new A[1];
    }

JDK 1.5+重写的方法,参数要求一样,返回值是协变的

public class Diff {
    public static void main(String[] args) {
        Father foo = new Son();
        foo.f1(new B());
    }
}

class Father{
    public B f1(B obj){
        System.out.println("Father.f1()");
        return new B();
    }
}

class Son extends Father{
    @Override
    public B f1(B obj) {
        System.out.println("Son.f1()");
        return new C();//父类返回值的子类,协变
    }
}
ArrayList<? extends A> list3 = new ArrayList<B>();//协变
ArrayList<? super B> list4 = new ArrayList<A>();//逆变
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值