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


Java HashTable compute()用法及代码示例


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

  • 如果在Hashtable的compute()中传递的重映射函数返回null作为返回值,则该映射将从Hashtable中删除(如果最初不存在,则保持不存在)。
  • 如果重映射函数引发异常,则重新引发该异常,并且当前映射保持不变。
  • 在计算过程中,不允许使用此方法修改此Map。
  • compute()方法可用于更新Hashtable中的现有值。
    例如,此映射附加映射的字符串值:
    Hashtable.compute(key, (k, v) -> v.append("strValue"))
    
  • 如果重新映射函数在计算过程中修改了此映射,则此方法将引发ConcurrentModificationException。

用法:


public V 
       compute(K key,
             BiFunction<? super K, ? super V, ? extends V> remappingFunction)

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

  • key:与值关联的键。
  • remappingFunction:用于对值进行运算的函数。

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

异常:该方法抛出:

  • ConcurrentModificationException:如果检测到重新映射函数修改了此Map。

以下示例程序旨在说明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 table and add some values 
        Map<String, Integer> table = new Hashtable<>(); 
        table.put("Pen", 10); 
        table.put("Book", 500); 
        table.put("Clothes", 400); 
        table.put("Mobile", 5000); 
  
        // print map details 
        System.out.println("hashTable: " + table.toString()); 
  
        // remap the values of hashTable 
        // using compute method 
        table.compute("Pen", (key, val) 
                                 -> val + 15); 
        table.compute("Clothes", (key, val) 
                                     -> val - 120); 
  
        // print new mapping 
        System.out.println("new hashTable: " + table); 
    } 
}
输出:
hashTable: {Book=500, Mobile=5000, Pen=10, Clothes=400}
new hashTable: {Book=500, Mobile=5000, Pen=25, Clothes=280}

输出:

hashTable: {Book=500, Mobile=5000, Pen=10, Clothes=400}
new hashTable: {Book=500, Mobile=5000, Pen=25, Clothes=280}

示例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 table and add some values 
        Map<Integer, String> table = new Hashtable<>(); 
        table.put(1, "100RS"); 
        table.put(2, "500RS"); 
        table.put(3, "1000RS"); 
  
        // print map details 
        System.out.println("hashTable: "
                           + table.toString()); 
  
        // remap the values of hashTable 
        // using compute method 
        table.compute(3, (key, val) 
                             -> val.substring(0, 4) + "00RS"); 
        table.compute(2, (key, val) 
                             -> val.substring(0, 2) + "$"); 
  
        // print new mapping 
        System.out.println("new hashTable: " + table); 
    } 
}
输出:
hashTable: {3=1000RS, 2=500RS, 1=100RS}
new hashTable: {3=100000RS, 2=50$, 1=100RS}

参考:https://docs.oracle.com/javase/10/docs/api/java/util/Hashtable.html#compute(K,java.util.function.BiFunction)



相关用法


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