从ArrayList里找出特定元素的实验

本文通过一个具体的Java代码示例,展示了使用List的indexOf方法查找元素位置时可能遇到的问题,特别是当比较对象的实例而非其引用时。文章揭示了即使两个对象具有相同属性值,如果它们不是同一个实例,indexOf方法也可能返回-1,表明元素不存在于列表中。
public class GetSpecifiedElementFromAList {
    
    public static void main(String[] args) {
        List<POJO> list = new ArrayList<POJO>();
        POJO a = new POJO();
        a.setKey("aaa");
        a.setContent("aaa111111");
        POJO b = new POJO();
        b.setKey("bbb");
        b.setContent("bbb222222");
        list.add(a);
        list.add(b);
        // So, we're going to find out where it is. I mean the element which key is 'bbb'.        
        // If you do it with the original object, everything seems OK.
        int idx = list.indexOf(b);
        System.out.println(idx); // You can get a '1' here.
        // But if you do it with a brand new object
        // containing the same value with the original one...
        POJO c = new POJO();
        // like this...
        c.setKey("bbb");
        c.setContent("bbb222222");
        idx = list.indexOf(c);
        System.out.println(idx); // you'll get nothing but '-1'.
        // which means it is not supposed to be used like this at all.
    }

}

转载于:https://www.cnblogs.com/oasyth/archive/2009/08/18/1549112.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值