当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。