当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java AbstractSequentialList lastIndexOf()用法及代码示例


java.util.AbstractSequentialList类的lastIndexOf()方法用于返回此列表中指定元素的最后一次出现的索引;如果此列表不包含该元素,则返回-1。更正式地,返回最高索引i,使(o == null?get(i)== null:o.equals(get(i)));如果没有这样的索引,则返回-1。

用法:

public int lastIndexOf(Object o)

参数:此方法将对象o作为要搜索的元素的参数。


返回值:此方法返回此列表中指定元素的最后一个匹配项的索引;如果此列表不包含该元素,则返回-1。

异常:该方法抛出:

  • ClassCastException:如果指定元素的类型与此列表不兼容。
  • NullPointerException :如果指定的元素为null,并且此列表不允许使用null元素。

以下示例说明了lastIndexOf()方法。

范例1:

// Java program to demonstrate lastIndexOf() 
// method for AbstractSequentialList 
  
import java.util.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Creating object of AbstractSequentialList 
        AbstractSequentialList<Integer> 
            arrlist1 = new LinkedList<Integer>(); 
  
        // Populating arrlist1 
        arrlist1.add(10); 
        arrlist1.add(20); 
        arrlist1.add(30); 
        arrlist1.add(40); 
        arrlist1.add(50); 
  
        // print arrlist1 
        System.out.println("AbstractSequentialList:"
                           + arrlist1); 
  
        // getting the index of element 30 
        // using lastIndexOf() method 
        int index = arrlist1.lastIndexOf(30); 
  
        // print the index 
        System.out.println("Last Index of 30:"
                           + index); 
    } 
}
输出:
AbstractSequentialList:[10, 20, 30, 40, 50]
Last Index of 30:2

范例2:

// Java program to demonstrate lastIndexOf() 
// method for AbstractSequentialList 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] args) 
    { 
        // Creating object of AbstractSequentialList 
        AbstractSequentialList<Integer> 
            arrlist1 = new LinkedList<Integer>(); 
  
        // Populating arrlist1 
        arrlist1.add(10); 
        arrlist1.add(20); 
        arrlist1.add(30); 
        arrlist1.add(40); 
        arrlist1.add(50); 
  
        // print arrlist1 
        System.out.println("LinkedListlist:"
                           + arrlist1); 
  
        // getting the index of element 100 
        // using lastIndexOf() method 
        int index = arrlist1.lastIndexOf(100); 
  
        // print the index 
        System.out.println("Last Index of 100:"
                           + index); 
    } 
}
输出:
LinkedListlist:[10, 20, 30, 40, 50]
Last Index of 100:-1


相关用法


注:本文由纯净天空筛选整理自Code_r大神的英文原创作品 AbstractSequentialList lastIndexOf() method in Java with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。