Java LinkedList lastIndexOf()方法
java.util.LinkedList.lastIndexOf(Object o) 用于返回指定元素最后一次出现的LinkedList中的索引;如果LinkedList不包含任何元素,则返回-1。
1 语法
public int lastIndexOf(Object o)
2 参数
o:要搜索的元素
3 返回值
返回指定元素最后一次出现的LinkedList中的索引;如果LinkedList不包含任何元素,则返回-1。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.LinkedList.lastIndexOf(Object o)方法的例子
*/
import java.util.*;
public class Demo {
public static void main(String[] args) {
// create a LinkedList
LinkedList list = new LinkedList();
// add some elements
list.add("Hello");
list.add(2);
list.add("Chocolate");
list.add("10");
list.add("Hello");
// print the list
System.out.println("LinkedList:" + list);
// get the last index for "Hello"
System.out.println("Index for Hello:" + list.lastIndexOf("Hello"));
// get the index for "Coffee"
System.out.println("Index for Coffee:" + list.indexOf("Coffee"));
}
}
输出结果为:
LinkedList:[Hello, 2, Chocolate, 10, Hello]
Index for Hello:4
Index for Coffee:-1
热门文章
优秀文章