Java ArrayList indexOf()方法

java.util.ArrayList.indexOf(Object) 方法返回指定元素在ArrayList中第一次出现的索引,如果ArrayList中不包含该元素,则返回-1。

1 语法

public int indexOf(Object o)

2 参数

o:要搜索的元素。

3 返回值

返回指定元素在ArrayList中第一次出现的索引,如果ArrayList中不包含该元素,则返回-1。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.ArrayList.indexOf(Object)方法的例子
 */
import java.util.ArrayList;

public class Demo {
    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

 

热门文章

优秀文章