📜  JavaTuples setKey() 方法

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

JavaTuples setKey() 方法

org.javatuples 中的setKey()方法用于设置 KeyValue 类对象的键。此方法只能与 javatuples 库的 KeyValue 类对象一起使用。它返回另一个 KeyValueClassObject,其中 Key 作为作为参数传递的元素,以及来自前一个 KeyValueClassObject 的值。

方法声明:

public  KeyValue setKey(X key)

句法:

KeyValue KeyValueClassObject = KeyValue.setKey(X key)

返回值:此方法返回另一个 KeyValueClassObject,其中 Key 作为作为参数传递的元素,以及来自前一个 KeyValueClassObject 的值。

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

示例 1

// Below is a Java program to set
// key in a KeyValue pair
  
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),
                            "A computer science portal");
  
        // Using setKey() method
        KeyValue kv1 = kv.setKey("GeeksforGeeks");
  
        // Printing the returned KeyValue
        System.out.println(kv1);
    }
}

输出

[GeeksforGeeks, A computer science portal]

示例 2

// Below is a Java program to set
// key in a KeyValue pair
  
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),
                            "1");
  
        // Using setKey() method
        KeyValue kv1 = kv.setKey("One");
  
        // Printing the returned KeyValue
        System.out.println(kv1);
    }
}

输出

[One, 1]