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


Java AbstractMap.SimpleEntry setValue(V value)用法及代碼示例


AbstractMap.SimpleEntry <K,V>用於維護鍵和值條目。可以使用setValue方法更改該值。此類有助於構建自定義Map實現。

AbstractMap.SimpleEntry <K,V>的setValue(V value)方法用於將map的當前值替換為作為參數傳遞的指定值。

用法:


public V setValue(V value)

參數:此方法接受我們要設置的值。

返回值:此方法返回對應於條目的舊值。

以下示例程序旨在說明setValue(V value)方法:
程序1:

// Java program to demonstrate 
// AbstractMap.SimpleEntry.setValue() method 
  
import java.util.*; 
  
public class GFG { 
  
    @SuppressWarnings({ "unchecked", "rawtypes" }) 
    public static void main(String[] args) 
    { 
  
        AbstractMap.SimpleEntry<Integer, Integer> 
            map 
            = new AbstractMap 
                  .SimpleEntry(0, 123); 
  
        // change value to 2122425 
        Integer newValue = 2122425; 
        Integer oldValue = map.setValue(newValue); 
  
        System.out.println("Value changed from " + oldValue 
                           + " to " + map.getValue()); 
    } 
}
輸出:
Value changed from 123 to 2122425

程序2:

// Java program to demonstrate 
// AbstractMap.SimpleEntry.setValue() method 
  
import java.util.*; 
  
public class GFG { 
  
    @SuppressWarnings({ "unchecked", "rawtypes" }) 
    public static void main(String[] args) 
    { 
  
        AbstractMap.SimpleEntry<String, String> map 
            = new AbstractMap 
                  .SimpleEntry<String, String>("Captain:", "Dhoni"); 
  
        // change value to Kohli 
        String newValue = "Kohli"; 
        String oldValue = map.setValue(newValue); 
  
        System.out.println("Value changed from " + oldValue 
                           + " to " + map.getValue()); 
    } 
}
輸出:
Value changed from Dhoni to Kohli

參考文獻: https://docs.oracle.com/javase/10/docs/api/java/util/AbstractMap.SimpleEntry.html#setValue(V)



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 AbstractMap.SimpleEntry setValue(V value) Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。