美文网首页
【ArrayList源码】lastIndexOf源码及使用

【ArrayList源码】lastIndexOf源码及使用

作者: 秀叶寒冬 | 来源:发表于2019-07-21 23:43 被阅读0次

    1 lastIndexOf源码

        /**
         * Returns the index of the last occurrence of the specified element
         * in this list, or -1 if this list does not contain the element.
         * More formally, returns the highest index <tt>i</tt> such that
         * <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>,
         * or -1 if there is no such index.
         * 返回指定元素在列表中最后一次出现的索引,如果不包含指定元素,则返回-1
         */
        public int lastIndexOf(Object o) {
            if (o == null) {
                for (int i = size-1; i >= 0; i--)
                    if (elementData[i]==null)
                        return i;
            } else {
                for (int i = size-1; i >= 0; i--)
                    if (o.equals(elementData[i]))
                        return i;
            }
            return -1;
        }
    

    它和indexOf源码几乎一样,不同的是,lastIndexOf是从列表的尾部开始查找是否包含指定元素,而indexOf是从头部开始查找。因此,解析可以参考【ArrayList源码】indexOf源码及使用

    2 lastIndexOf使用

            List<Integer> list = new ArrayList<>();
            list.add(5);
            list.add(3);
            list.add(4);
            list.add(3)
            System.out.println(list.indexOf(3));
            
            List<String>list1 = new ArrayList<>();
            list1.add("wo");
            list1.add("ni");
            list1.add("wo");
            System.out.println(list1.indexOf("wo"));
    

    输出

    3
    2
    

    3 总结

    lastIndexOf返回指定元素在列表中最后一次出现的索引,如果不包含指定元素,则返回-1

    相关文章

      网友评论

          本文标题:【ArrayList源码】lastIndexOf源码及使用

          本文链接:https://www.haomeiwen.com/subject/xdeblctx.html