java.util.ArrayList.indexOf(Object) 方法返回指定元素的第一個匹配項的索引在此列表中,或者-1,如果此列表中不包含該元素。
以下是java.util.ArrayList.indexOf()方法的宣告
public int indexOf(Object o)
o -- 要搜尋的元素。
此方法返回指定元素的第一個匹配項的索引在此列表中,或者如果此列表中不包含該元素返回-1。
NA
下面的範例演示java.util.ArrayList.indexOf()方法的用法。
package com.yiibai; import java.util.ArrayList; public class ArrayListDemo { public static void main(String[] args) { // create an empty array list with an initial capacity ArrayList<String> arrlist = new ArrayList<String>(5); // use add() method to add values in the list arrlist.add("G"); arrlist.add("E"); arrlist.add("F"); arrlist.add("M"); System.out.println("Size of list: " + arrlist.size()); // let us print all the values available in list for (String value : arrlist) { System.out.println("Value = " + value); } // retrieving the index of element "E" int retval=arrlist.IndexOf("E"); System.out.println("The element E is at index " + retval); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Size of list: 4 Value = G Value = E Value = F Value = M The element E is at index 1