java wildcards examples

本文详细介绍了Java中泛型上界与下界的使用方法,通过具体实例展示了如何利用extends指定类型参数的上界,使得方法可以接受特定类型的集合;同时,也解释了如何使用super来指定类型参数的下界,实现对超类型元素的比较。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Specifying upper bound with extends

    // drawAll() can draw a list of shapes as well as a list of subtype of
    // shapes
    public static void drawAll(Collection<? extends Shape> shapes) {
        for (Shape s : shapes) {
            s.draw();
        }
    }

    public static void main(String[] args) {

        // create a list of triangles
        List<Triangle> triangles = new ArrayList<Triangle>();

        // add triangle1 to triangle list
        Triangle t1 = new Triangle();
        triangles.add(t1);

        // add triangle2 to triangle list
        Triangle t2 = new Triangle();
        triangles.add(t2);

        // call drawAll() to draw a list of triangles
        drawAll(triangles);
    }

Specifying lower bound with super

    // finding the max value
    // T implements Comparator of super type of T
    public static <T extends Comparator<? super T> > T max( T[] arr ) {

        if (arr == null || arr.length == 0)
            throw new IllegalArgumentException();

        T m = arr[0];

        int len = arr.length;
        for (int i = 1; i < len; i++) {
            if ( m.compare(m, arr[i]) < 0 )
                m = arr[i];
        }

        return m;
    }




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值