JavaTuple lastIndexOf() 方法
org.javatuples 中的lastIndexOf()方法用于查找 TupleClass 中作为参数传递的值的最后一个索引。该方法采用 Object 类型的参数,因此它可以检查所有类型的值。它继承自 JavaTuple 类。此方法可用于 javatuples 库的任何元组类对象。如果多次找到,它返回一个 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 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 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 类一起使用。