📜  JavaTuples getKey() 方法

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

JavaTuples getKey() 方法

org.javatuples 中的getKey()方法用于从 KeyValue 类的 TupleClassObject 中获取键。此方法只能与 javatuples 库的 KeyValue 类对象一起使用。它返回一个 Key,它是 KeyValueClassObject 的索引 0 处的元素。返回的 Key 确保了类型安全。

方法声明:

public A getKey()

句法:

KeyValue KeyValueClassObject = KeyValue.with(A a, B b);
A val = KeyValueClassObject.getKey()

返回值:此方法返回一个 Key,它是 KeyValueClassObject 的索引 0 处的元素。

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

示例 1

// Below is a Java program to get
// a KeyValue value
  
import java.util.*;
import org.javatuples.KeyValue;
  
class GfG {
    public static void main(String[] args)
    {
        // Creating a KeyValue object
        KeyValue kv
            = KeyValue.with(Integer.valueOf(1),
                            "GeeksforGeeks");
  
        // Using getKey() method
        int key = kv.getKey();
  
        // Printing the Key
        System.out.println(key);
    }
}

输出

1

示例 2

// Below is a Java program to get
// a KeyValue value
  
import java.util.*;
import org.javatuples.KeyValue;
  
class GfG {
    public static void main(String[] args)
    {
        // Creating a KeyValue object
        KeyValue kv
            = KeyValue.with("GeeksforGeeks",
                            "A Computer Science Portal for Geeks");
  
        // Using getKey() method
        String key = kv.getKey();
  
        // Printing the Key
        System.out.println(key);
    }
}

输出

GeeksforGeeks