用Java过滤HashTable

时间:2019-05-29 22:21:03

标签: java hashtable

有什么方法可以基于Java中的键/值来过滤HashTable?我可以使用HashMap来做到这一点,

Map<Integer, String> result = hashmap.entrySet()
         .stream()
         .filter(map -> map.getValue().startsWith("A"))
         .collect(Collectors.toMap(map -> map.getKey(), map ->
         map.getValue()));

但是,我似乎找不到关于使用HashTable进行操作的任何信息。有想法吗?

0 个答案:

没有答案