Java.util.LinkedList.indexOf() 方法
描述
java.util.LinkedList.indexOf(Object o) 方法返回此列表中指定元素第一次出现的索引,如果此列表不包含该元素,则返回 -1。
声明
以下是 java.util.LinkedList.indexOf() 方法的声明
public int indexOf(Object o)
参数
o − 要搜索的元素
返回值
此方法返回此列表中指定元素第一次出现的索引,如果此列表不包含该元素,则返回 -1
异常
NA
示例
下面的例子展示了 java.util.LinkedList.indexOf() 方法的使用。
package com.tutorialspoint; import java.util.*; public class LinkedListDemo { public static void main(String[] args) { // create a LinkedList LinkedList list = new LinkedList(); // add some elements list.add("Hello"); list.add(2); list.add("Chocolate"); list.add("10"); // print the list System.out.println("LinkedList:" + list); // get the index for "Chocolate" System.out.println("Index for Chocolate:" + list.indexOf("Chocolate")); // get the index for "Coffee" System.out.println("Index for Coffee:" + list.indexOf("Coffee")); } }
让我们编译并运行上面的程序,这将产生以下结果 −
LinkedList:[Hello, 2, Chocolate, 10] Index for Chocolate:2 Index for Coffee:-1