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, TreeMap Exercises: Copy a Tree Map content to another Tree Map content

Java Collection, TreeMap Exercises: Exercise-2 with Solution

Write a Java program to copy a Tree Map content to another Tree Map content.

Sample Solution:-

Java Code:

import java.util.*;  
public class Example2 {  
   public static void main(String args[]){  
  
  // Create a tree map
   TreeMap<String,String> tree_map1=new TreeMap<String,String>();      
  
  // Put elements to the map 
  tree_map1.put("C1", "Red");
  tree_map1.put("C2", "Green");
  tree_map1.put("C3", "Black");
  tree_map1.put("C4", "White");
  tree_map1.put("C5", "Blue");
   System.out.println("Tree Map 1: "+tree_map1);
   TreeMap<String,String> tree_map2 = new TreeMap<String,String>();
   tree_map2.put("A1", "Orange");
   tree_map2.put("A2", "Pink");
   System.out.println("Tree Map 2: "+tree_map2);
   tree_map1.putAll(tree_map2);
   System.out.println("After coping map2 to map1: "+tree_map1);   
 }  
}

Sample Output:

Tree Map 1: {C1=Red, C2=Green, C3=Black, C4=White, C5=Blue}            
Tree Map 2: {A1=Orange, A2=Pink}                                       
After coping map2 to map1: {A1=Orange, A2=Pink, C1=Red, C2=Green, C3=Bl
ack, C4=White, C5=Blue}

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Associate the specified value with the specified key in a TreeMap.
Next: Search a key in a Tree Map.

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