阅读量:1
在Java中可以使用indexOf()
方法来获取List中某个元素的索引位置。
indexOf()
方法接受一个参数,即要查找的元素,返回该元素在List中首次出现的索引位置。如果List中不包含该元素,则返回-1。
以下是一个示例代码:
import java.util.ArrayList; import java.util.List; public class ListIndexExample { public static void main(String[] args) { List<String> list = new ArrayList<>(); list.add("A"); list.add("B"); list.add("C"); list.add("D"); int index = list.indexOf("B"); System.out.println("B的索引位置:" + index); // 输出:B的索引位置:1 index = list.indexOf("E"); System.out.println("E的索引位置:" + index); // 输出:E的索引位置:-1 } }
在上面的示例中,首先创建一个List,并添加了几个元素。然后使用indexOf()
方法分别查找了元素"B"和"E"的索引位置,打印结果为1和-1。