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


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


org.javatuples中的lastIndexOf()方法用于在TupleClass中查找作为参数传递的值的最后一个索引。此方法采用对象类型的参数,以便它可以检查所有类型的值。它是从JavaTuple类继承的。此方法可用于javatuples库的任何tuple类对象。如果多次发现,则返回一个int值,该值是作为参数传递的值的最后一个索引。如果仅找到一次,它将返回该索引。如果找不到,则返回-1。

方法声明:

public final int lastIndexOf(Object value)

用法:


int index = TupleClassObject.lastIndexOf(Object value)

这里TupleClassObject表示使用的JavaTuple Class对象,例如Unit,Quintet,Decade等。

返回值:如果多次发现此方法,则返回一个int值,该值是作为参数传递的值的最后一个索引。如果仅找到一次,它将返回该索引。如果找不到,则返回-1。

下面的程序将说明使用lastIndexOf()方法的各种方法:

程序1:使用lastIndexOf()和Unit类:

// Below is a Java program to use lastIndexOf() method 
  
import java.util.*; 
import org.javatuples.Unit; 
  
class GfG { 
    public static void main(String[] args) 
    { 
        // Creating an Unit with one value 
        Unit<String> unit = Unit.with("GeeksforGeeks"); 
  
        // Using lastIndexOf() method for present value 
        int index = unit.lastIndexOf("GeeksforGeeks"); 
  
        // Printing the index 
        System.out.println("Last Index of GeeksforGeeks = "
                           + index); 
  
        // Using lastIndexOf() method for absent value 
        index = unit.lastIndexOf("Present"); 
  
        // Printing the index 
        System.out.println("Last Index of Present = "
                           + index); 
    } 
}

输出:

Last Index of GeeksforGeeks = 0
Last Index of Present = -1

程序2:将lastIndexOf()与Quartet类一起使用:

// Below is a Java program to use lastIndexOf() method 
  
import java.util.*; 
import org.javatuples.Quartet; 
  
class GfG { 
    public static void main(String[] args) 
    { 
        // Creating a quartet 
        Quartet<Integer, Integer, Integer, String> quartet 
            = Quartet.with(Integer.valueOf(1), 
                           Integer.valueOf(1), 
                           Integer.valueOf(1), 
                           "GeeksforGeeks"); 
  
        // Using lastIndexOf() method for value 
        // present more than once 
        int index = quartet.lastIndexOf(1); 
  
        // Printing the index 
        System.out.println("Last Index of 1 = "
                           + index); 
  
        // Using lastIndexOf() method for value 
        // present just once 
        index = quartet.lastIndexOf("GeeksforGeeks"); 
  
        // Printing the index 
        System.out.println("Last Index of GeeksforGeeks = "
                           + index); 
  
        // Using lastIndexOf() method for value 
        // not present 
        index = quartet.lastIndexOf(20.5); 
  
        // Printing the index 
        System.out.println("Last Index of 20.5 = "
                           + index); 
    } 
}

输出:

Last Index of 1 = 2
Last Index of GeeksforGeeks = 3
Last Index of 20.5 = -1

注意:同样,它可以与任何其他JavaTuple类一起使用。



相关用法


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