当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.util.ArrayList.lastIndexOf()用法及代码示例



描述

这个java.util.ArrayList.lastIndexOf(Object)方法返回此列表中指定元素最后一次出现的索引,如果此列表不包含该元素,则返回 -1。

声明

以下是声明java.util.ArrayList.lastIndexOf()方法

public int lastIndexOf(Object o)

参数

o─ 要搜索的元素。

返回值

此方法返回此列表中指定元素最后一次出现的索引,如果此列表不包含该元素,则返回 -1。

异常

NA

示例

下面的例子展示了 java.util.ArrayList.lastIndexOf() 方法的用法。

package com.tutorialspoint;

import java.util.ArrayList;

public class ArrayListDemo {
   public static void main(String[] args) {

      // create an empty array list with an initial capacity
      ArrayList<String> arrlist = new ArrayList<String>(5);

      // use add() method to add values in the list
      arrlist.add("G");
      arrlist.add("E");
      arrlist.add("F");
      arrlist.add("M");
      arrlist.add("E");
      
      System.out.println("Size of list:" + arrlist.size());

      // let us print all the values available in list
      for (String value:arrlist) {
         System.out.println("Value = " + value);
      }  

      // Retrieving the index of last occurrence of element "E"
      int retval = arrlist.lastIndexOf("E");
      System.out.println("The last occurrence of E is at index " + retval);
   }
}

让我们编译并运行上面的程序,这将产生以下结果——

Size of list:5
Value = G
Value = E
Value = F
Value = M
Value = E
The last occurrence of E is at index 4

相关用法


注:本文由纯净天空筛选整理自 Java.util.ArrayList.lastIndexOf() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。