📅  最后修改于: 2023-12-03 15:16:29.640000             🧑  作者: Mango
ArrayList
是Java容器类中非常常用的一个类,它实现了一个可调整大小的数组。
其中,java.util.ArrayList.indexOf()
是一个用于查找特定元素在ArrayList
中第一次出现的索引位置的方法。
public int indexOf(Object o)
方法参数Object o
是被查找元素的对象。
ArrayList
对象中的索引位置(索引从0开始)。import java.util.ArrayList;
public class Example {
public static void main(String[] args) {
ArrayList<String> colors = new ArrayList<String>();
colors.add("Red");
colors.add("Green");
colors.add("Blue");
int index = colors.indexOf("Green");
System.out.println("Index of Green: " + index);
}
}
输出:
Index of Green: 1
通过java.util.ArrayList.indexOf()
方法,我们可以查找一个元素在ArrayList
中的索引位置。当我们需要在列表中查找或定位元素时,这个方法会非常有用。