我想知道是否可以将多个 hashMaps 中的项目相互比较:
HashMap<String,String> valueMap = new HashMap<String, String>();
HashMap<String,Integer> formulaMap = new HashMap<String, Integer>();
我基本上想做的是:
if(the second string in valueMap is the same as the first string in formulaMap){
}
有没有一种简单的方法来实现这一点,或者我必须在将字符串包含到 hashMaps 之前比较它们。在程序的这个阶段,我的 Integer 需要取一个空值。我可以使用多维数组来实现我的目标,但这样的解决方案会更优雅且耗时更少。