📜  JavaTuple getValueX() 方法

📅  最后修改于: 2022-05-13 01:55:16.889000             🧑  作者: Mango

JavaTuple getValueX() 方法

org.javatuples 中的getValueX()方法用于从索引 X 中获取 TupleClassObject 的值。该方法可用于 javatuples 库的任何元组类对象。它返回 TupleClassObject 的索引 X 处的值。返回的 Value 的类型是 X th TupleClassObject 的元素。因此,与 getValue(X) 不同,使用 getValueX() 保留了类型安全性。

X 的值介于 0 到 TupleClassObject 中存在的元素数的范围内,减 1。这意味着对于 Unit 类,X 的可用值是 0。同样对于 Decade 类,X 的可用值是 0 , 1, 2, .. 到 9。

方法声明:

public A getValueX()

句法:

A val = TupleClassObject.getValueX()

这里:

  • TupleClassObject表示使用的 JavaTuple 类对象,如 Unit、Quintet、Decade 等。
  • A代表X的类型th元素
  • X表示要获取的值的索引

返回值:此方法返回 TupleClassObject 的索引 X 处的值。返回的 Value 的类型是 X th TupleClassObject 的元素。

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

程序 1:将 getValueX() 与 Unit 类一起使用:

// Below is a Java program to use getValueX() 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 getValueX() method for X=0
        // The type of val is String
        // which is the type of the 0th element in Unit
        String val = unit.getValue0();
  
        System.out.println("Value at 0 = " + val);
    }
}

输出:

Value at 0 = GeeksforGeeks

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

// Below is a Java program to use getValueX() 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),
                           "GeeksforGeeks",
                           "A computer portal",
                           Double.valueOf(20.18));
  
        // Using getValueX() method for X=3
        // The type of val is Double which is the
        // type of the 3rd index value of Quartet
        Double val = quartet.getValue3();
  
        System.out.println("Value at 3 = " + val);
    }
}

输出:

Value at 3 = 20.18

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