當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java JavaTuples setAtX()用法及代碼示例


org.javatuples中的setAtX()方法用於在索引X處更改現有元組中的值。由於JavaTuples是不可變的,因此更改現有元組中的值將導致新的元組在索引X處具有已修改的值。它返回索引X處更改後的值的被調用類的元組類對象。

用法:

Quartet<String, Integer, Double, String> quartet = ...
    ...
Quartet otherQuartet = quartet.setAtX(value);

X表示要在其中更改值的索引。


返回值:此方法返回已更改類的元組類對象,其值在索引X處已更改。

注意:KeyValue類和LabelValue類不存在此方法。

以下示例程序旨在說明使用setAtX()方法的各種方法:

程序1:當setAtX()方法與單位到十年的任何類一起使用時,直接值作為參數:

// 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<String, String> 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]

程序2:

// 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<Integer, Integer, Integer, 
               Integer, Integer, Integer, 
               Integer, Integer, Integer, 
               Integer> 
            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類一起使用。



相關用法


注:本文由純淨天空篩選整理自RishabhPrabhu大神的英文原創作品 JavaTuples setAtX() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。