Java.util.LinkedList.lastIndexOf()


描述

所述java.util.LinkedList.lastIndexOf(Object O)方法返回指定元素的最后一个出现的索引在此列表中,或-1,如果该列表中不包含的元素。

声明

以下是java.util.LinkedList.lastIndexOf()方法的声明

public int lastIndexOf(Object o)

参数

o - 要搜索的元素

返回值

此方法返回此列表中指定元素最后一次出现的索引,如果此列表不包含该元素,则返回-1

异常

NA

实例

以下示例显示了java.util.LinkedList.lastIndexOf()方法的用法。

package com.tutorialspoint;

import java.util.*;

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