當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。