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


Java Properties compute(Key, BiFunction)用法及代码示例


Properties类的compute(Key,BiFunction)方法允许为指定键及其当前映射值(如果没有找到当前映射,则为null)计算映射。

  • 如果在Properties的compute()中传递的重映射函数返回null作为返回值,则该映射将从Properties中删除(如果最初不存在,则保持不存在)。
  • 如果重映射函数引发异常,则重新引发该异常,并且当前映射保持不变。
  • 在计算过程中,不允许使用此方法修改此Map。
  • 如果重新映射函数在计算过程中修改了此映射,则此方法将引发ConcurrentModificationException。

用法:

public Object compute?(Object key,
                      BiFunction remappingFunction)

参数:此方法接受两个参数:


  • key与值关联的:key。
  • remappingFunction:function对值进行运算。

返回值:此方法返回与指定键关联的新值;如果没有,则返回null。

异常:如果检测到重新映射函数修改了此映射,则此方法将引发ConcurrentModificationException。

以下示例程序旨在说明compute(Key,BiFunction)方法:

程序1:

// Java program to demonstrate 
// compute(Key, BiFunction) method. 
  
import java.util.*; 
  
public class GFG { 
  
    // Main method 
    public static void main(String[] args) 
    { 
  
        // Create a properties and add some values 
        Properties properties = new Properties(); 
        properties.put("Pen", 10); 
        properties.put("Book", 500); 
        properties.put("Clothes", 400); 
        properties.put("Mobile", 5000); 
  
        // print Properties details 
        System.out.println("Current Properties:"
                           + properties.toString()); 
  
        // remap the values of Properties 
        // using compute method 
        properties.compute("Pen", (key, val) 
                                      -> 15); 
        properties.compute("Clothes", (key, val) 
                                          -> 120); 
  
        // print new mapping 
        System.out.println("New Properties:"
                           + properties.toString()); 
    } 
}
输出:
Current Properties:{Book=500, Mobile=5000, Pen=10, Clothes=400}
New Properties:{Book=500, Mobile=5000, Pen=15, Clothes=120}

程序2:

// Java program to demonstrate 
// compute(Key, BiFunction) method. 
  
import java.util.*; 
  
public class GFG { 
  
    // Main method 
    public static void main(String[] args) 
    { 
  
        // Create a properties and add some values 
        Properties properties = new Properties(); 
  
        properties.put(1, "100RS"); 
        properties.put(2, "500RS"); 
        properties.put(3, "1000RS"); 
  
        // print Properties details 
        System.out.println("Current Properties:"
                           + properties.toString()); 
  
        // remap the values of Properties 
        // using compute method 
        properties.compute(3, (key, val) 
                                  -> "00RS"); 
        properties.compute(2, (key, val) 
                                  -> "$"); 
  
        // print new mapping 
        System.out.println("New Properties:"
                           + properties.toString()); 
    } 
}
输出:
Current Properties:{3=1000RS, 2=500RS, 1=100RS}
New Properties:{3=00RS, 2=$, 1=100RS}

参考:https://docs.oracle.com/javase/9​​/docs/api/java/util/Properties.html#compute-java.lang.Object-java.util.function.BiFunction-



相关用法


注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Properties compute(Key, BiFunction) method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。