一、ListIndexOf基本介绍
ListIndexOf是Java中List接口中的方法之一。它的作用是返回指定元素在列表中首次出现的位置的索引,如果列表中不包含此元素,则返回-1。该方法有两个参数,分别是要查找的元素和起始查找位置的索引值。
例如,我们可以用ListIndexOf来查找某个字符串在列表中的位置。
Listlist = new ArrayList (); list.add("Apple"); list.add("Banana"); list.add("Orange"); int index = list.indexOf("Banana"); System.out.println(index); // 输出1
上面的代码中,我们创建了一个字符串类型的列表,并将Apple、Banana和Orange三个字符串添加到列表中。然后使用ListIndexOf方法查找Banana在列表中的位置,结果是1,表示Banana在列表中的索引是1。
二、ListIndexOf使用实例
1. 查找数组元素
在实际开发中,我们经常需要查找数组中是否包含某个元素。可以使用ListIndexOf方法查找数组元素。
String[] array = new String[]{"Apple", "Banana", "Orange"}; Listlist = Arrays.asList(array); int index = list.indexOf("Banana"); System.out.println(index); // 输出1
上面的代码中,我们将一个字符串数组转换为List,并使用ListIndexOf方法查找Banana在列表中的位置,结果是1。
2. 指定查找位置
ListIndexOf方法可以指定起始查找位置的索引值。如果不指定,则默认从列表的开头开始查找。
Listlist = new ArrayList (); list.add("Apple"); list.add("Banana"); list.add("Orange"); list.add("Banana"); int index = list.indexOf("Banana", 2); System.out.println(index); // 输出3
上面的代码中,我们向列表中添加了两个Banana元素,然后使用ListIndexOf方法从索引位置2开始查找Banana在列表中的位置,结果是3。
3. 查找自定义对象
ListIndexOf方法可以用来查找自定义对象在列表中的位置。需要重写对象的equals方法。
class Person { private String name; private int age; public Person(String name, int age) { this.name = name; this.age = age; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; Person person = (Person) o; return age == person.age && Objects.equals(name, person.name); } @Override public int hashCode() { return Objects.hash(name, age); } } Listlist = new ArrayList (); list.add(new Person("Tom", 20)); list.add(new Person("Jack", 30)); list.add(new Person("Lucy", 25)); int index = list.indexOf(new Person("Jack", 30)); System.out.println(index); // 输出1
上面的代码中,我们定义了一个Person类,重写了equals方法。我们创建了一个Person类型的列表,并向其中添加了三个Person对象。然后使用ListIndexOf方法查找年龄为30的Person对象在列表中的位置,结果是1。
三、ListIndexOf使用注意事项
1. 查找自定义对象时需要重写equals方法
ListIndexOf方法查找自定义对象时需要重写equals方法,否则可能会得到错误的结果。
2. 当列表中包含null元素时,ListIndexOf方法也会返回-1
当列表中包含null元素时,ListIndexOf方法查找任何元素都将返回-1。
Listlist = new ArrayList (); list.add("Apple"); list.add(null); list.add("Orange"); int index = list.indexOf("Banana"); System.out.println(index); // 输出-1
上面的代码中,我们向列表中添加了一个null元素,然后使用ListIndexOf方法查找Banana在列表中的位置,结果是-1。
3. ListIndexOf方法与contains方法的区别
ListIndexOf方法和contains方法都可以用来查找元素是否在列表中存在。它们的区别在于返回值。如果元素不存在于列表中,contains方法将返回false,而ListIndexOf方法将返回-1。
Listlist = new ArrayList (); list.add("Apple"); list.add("Banana"); list.add("Orange"); boolean contains = list.contains("Banana"); int index = list.indexOf("Banana"); System.out.println(contains); // 输出true System.out.println(index); // 输出1
上面的代码中,我们同时使用了contains方法和ListIndexOf方法查找Banana在列表中的位置,contains返回true,而ListIndexOf返回1。
四、总结
ListIndexOf是Java中List接口中的方法之一,用于查找指定元素在列表中首次出现的位置的索引。无论是查找数组元素还是查找自定义对象,都可以使用ListIndexOf方法。但需要注意,查找自定义对象时需要重写equals方法,当列表中包含null元素时,ListIndexOf方法也会返回-1。与contains方法的区别在于返回值。