Java中的lastIndexOf(obj o)方法有哪些作用?


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

示例

import java.util.ArrayList;

public class ArrayListDemo {
   public static void main(String[] args) {
      ArrayList<String> arrlist = new ArrayList<String>(5);
      arrlist.add("G");
      arrlist.add("E");
      arrlist.add("F");
      arrlist.add("M");
      arrlist.add("E");
      System.out.println("Size of list: " + arrlist.size());
      for (String value : arrlist) {
         System.out.println("Value = " + value);
      }
      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

更新时间: 2020 年 2 月 20 日

78 次浏览

开启 职业生涯

完成课程,获得认证

开始学习
广告