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


Java LinkedList lastIndexOf()用法及代码示例


lastIndexOf(对象元素) 方法LinkedList 类存在于里面java.util包用于检查并查找列表中特定元素的出现。如果该元素存在于列表中,则 lastIndexOf() 方法返回该元素最后一次出现的索引,否则返回 -1。此方法用于查找 LinkedList 中特定元素的最后一次出现。

用法:

LinkedList.lastIndexOf(Object element)

参数:参数元素是 LinkedList 类型。

It refers to the element whose last occurrence is required to be checked.

返回值:该元素在列表中最后一次出现的位置,否则如果该元素不存在于列表中,则该方法返回 -1。返回值是整型。

例子:

Java


// Java Program to Illustrate lastIndexOf() Method 
// of LinkedList class 
  
// Importing required classes 
import java.io.*; 
import java.util.LinkedList; 
  
// Main class 
public class GFG { 
  
    // Main driver method 
    public static void main(String args[]) 
    { 
  
        // Creating an empty LinkedList of string type 
        LinkedList<String> list = new LinkedList<String>(); 
  
        // Adding elements in the list 
        // using add() method 
        list.add("Geeks"); 
        list.add("for"); 
        list.add("Geeks"); 
        list.add("10"); 
        list.add("20"); 
  
        // Displaying the current elements inside LinkedList 
        System.out.println("LinkedList:" + list); 
  
        // The last position of an element is returned 
        // using lastIndexOf() method and 
        // displaying on the console 
        System.out.println( 
            "Last occurrence of Geeks is at index: "
            + list.lastIndexOf("Geeks")); 
        System.out.println( 
            "Last occurrence of 10 is at index: "
            + list.lastIndexOf("10")); 
    } 
}
输出:
LinkedList:[Geeks, for, Geeks, 10, 20]
Last occurrence of Geeks is at index: 2
Last occurrence of 10 is at index: 3


相关用法


注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 LinkedList lastIndexOf() Method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。