假设我在下面每个类都有一个对象,我将每个对象放在一个哈希图中,其中 IDnumber 是两个映射中的键。
class1 {
int IDNumber = 123; //same person as class2
String name = John;
String company = Intel;
class2 {
int IDNumber = 123; //same person as class1
int income = 500;
int workYears = 3;
}
HashMap<Integer, class1> one = new Hashmap<Integer, class1>();
HashMap<Integer, class2> two = new HashMap<Integer, class2>();
现在,我怎样才能将这两个 HashMap 混合成第三个 HashMap,以便我可以拥有键 IDnumber 以及值 name、company、income 和 workyears?