共计 558 个字符,预计需要花费 2 分钟才能阅读完成。
在 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。
丸趣 TV 网 – 提供最优质的资源集合!
正文完