Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Collection, HashMap Exercises: Get a shallow copy of a HashMap instance

Java Collection, HashMap Exercises: Exercise-6 with Solution

Write a Java program to get a shallow copy of a HashMap instance.

Sample Solution:-

Java Code:

import java.util.*;  
public class Example6 {  
   public static void main(String args[]){  
  HashMap<Integer,String> hash_map= new HashMap<Integer,String>();  
  hash_map.put(1, "Red");
  hash_map.put(2, "Green");
  hash_map.put(3, "Black");
  hash_map.put(4, "White");
  hash_map.put(5, "Blue");
    // print the map
   System.out.println("The Original map: " + hash_map);
   HashMap<Integer,String> new_hash_map= new HashMap<Integer,String>(); 
   new_hash_map = (HashMap)hash_map.clone();     
   System.out.println("Cloned map: " + new_hash_map);        
     }
}

Sample Output:

Note: Example6.java uses unchecked or unsafe operations.               
Note: Recompile with -Xlint:unchecked for details.                     
The Original map: {1=Red, 2=Green, 3=Black, 4=White, 5=Blue}           
Cloned map: {1=Red, 2=Green, 3=Black, 4=White, 5=Blue}

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Check whether a map contains key-value mappings (empty) or not.
Next: Test if a map contains a mapping for the specified key.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe