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


Java LinkedList indexOf()用法及代碼示例


Java.util.LinkedList.indexOf(Object element)方法用於檢查和查找列表中特定元素的出現。如果存在該元素,則返回該元素首次出現的索引,否則,如果列表不包含該元素,則返回-1。

用法:

LinkedList.indexOf(Object element)

參數:參數element 的類型為LinkedList。它指定需要在LinkedList中檢查其出現的元素。


返回值:如果該元素不在列表中,則該方法返回該元素在列表中首次出現的索引或位置,否則返回-1。返回值是整數類型。

以下示例程序旨在說明Java.util.LinkedList.indexOf()方法:

// Java code to illustrate indexOf() 
import java.io.*; 
import java.util.LinkedList; 
  
public class LinkedListDemo { 
   public static void main(String args[]) { 
  
      // Creating an empty LinkedList 
      LinkedList<String> list = new LinkedList<String>(); 
  
      // Use add() method to add elements in the list 
      list.add("Geeks"); 
      list.add("for"); 
      list.add("Geeks"); 
      list.add("10"); 
      list.add("20"); 
  
      // Displaying the list 
      System.out.println("LinkedList:" + list); 
        
      // The first position of an element  
      // is returned 
      System.out.println("The first occurrence of Geeks is at index:" 
                                              + list.indexOf("Geeks")); 
      System.out.println("The first occurrence of 10 is at index: "  
                                               + list.indexOf("10")); 
  
   } 
}
輸出:
LinkedList:[Geeks, for, Geeks, 10, 20]
The first occurrence of Geeks is at index: 0
The first occurrence of 10 is at index: 3


相關用法


注:本文由純淨天空篩選整理自Chinmoy Lenka大神的英文原創作品 LinkedList indexOf() method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。