📜  JavaTuples setAtX() 方法

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

JavaTuples setAtX() 方法

org.javatuples 中的setAtX()方法用于在索引 X 处更改现有元组中的值。由于 JavaTuples 是不可变的,因此更改现有元组中的值会导致在索引处具有修改后值的新元组X. 它返回被调用类的元组类对象,在索引 X 处具有更改的值。

句法:

Quartet quartet = ...
    ...
Quartet otherQuartet = quartet.setAtX(value);

这里X表示要更改值的索引。

返回值:该方法返回被调用类的元组类对象,其值在索引 X 处发生变化。

注意:此方法不存在于 KeyValue 类和 LabelValue 类中。

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

程序 1:当 setAtX() 方法与从 Unit 到 Decade 的任何类一起使用时,使用直接值作为参数:

// Below is a Java program to demonstrate
// use of setAtX() method
  
import java.util.*;
import org.javatuples.Pair;
  
class GfG {
    public static void main(String[] args)
    {
        // Creating a Pair with 2 values
        Pair pair = Pair.with("GeeksforGeeks",
                                              "A computer science portal");
  
        // Using Pair() method to instantiate unit object
        Pair otherPair = pair.setAt1("by Sandeep Jain");
  
        // Printing the returned Pair
        System.out.println(otherPair);
    }
}

输出:

[GeeksforGeeks, by Sandeep Jain]

方案二:

// Below is a Java program to demonstrate
// use of setAtX() method
  
import java.util.*;
import org.javatuples.Decade;
  
class GfG {
    public static void main(String[] args)
    {
        // Using with() method to instantiate Decade object
        Decade
            decade
            = Decade.with(Integer.valueOf(1),
                          Integer.valueOf(2),
                          Integer.valueOf(3),
                          Integer.valueOf(4),
                          Integer.valueOf(5),
                          Integer.valueOf(6),
                          Integer.valueOf(7),
                          Integer.valueOf(8),
                          Integer.valueOf(9),
                          Integer.valueOf(10));
  
        // Using setAtX()
        Decade otherDecade = decade.setAt9(100);
  
        // Printing the formed Decade
        System.out.println(otherDecade);
    }
}

输出:

[1, 2, 3, 4, 5, 6, 7, 8, 9, 100]

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