Lets say I have 2 Map's in Java. I want to compare map1's keys to map2's keys to see if there are any similar keys in the 2 maps. How can i do that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
If you don't want to modify the maps:
Finding the common keys:
If your keys are dates, they should probably be something |
|||||||
|
|
Something like that ? If you want don't remove from m1 then you can do this m3 = new(m1)
|
||||
|
|
|
|||||||||||||
|
|
Map comparisons are made easier by Maps.difference(..) method from Google's guava libraries. |
|||
|
|