Please how can I solve this problem | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Please how can I solve this problem

A hash map has so many employees and each employee had these attributes: Note,name,age So I want to store the notes of each employee in another hash map. https://code.sololearn.com/c4A12a21A19A/?ref=app

15th Feb 2021, 12:46 AM
Amal Gil
Amal Gil - avatar
1 Answer
+ 1
if all you want is to copy the notes from all employees in to a map, then u just need to do: employeeMap.forEach((k,v)->{noteMap.put(k,v.note);}); in my example noteMap would be declared as Map<Long,Long>, the key would be the emplyee key and the value would be note which is a Long.
15th Feb 2021, 9:52 PM
Anastacia Ru
Anastacia Ru - avatar