在 Java 中,TreeMap 類的 clone() 方法用於返回上述樹形圖的淺拷貝。它隻是創建Map的副本。
--> java.util Package
--> TreeMap Class
--> clone() Method
用法:
Tree_Map.clone()
參數:該方法不帶任何參數。
返回類型:TreeMap 的副本。
示例 1:將字符串值映射到整數鍵
Java
// Java Program to Illustrate clone() method
// of TreeMap class
// Importing required classes
import java.util.*;
// Main class
public class GFG {
// Main driver method
public static void main(String[] args)
{
// Creating an empty TreeMap by
// declaring object of integer-string pairs
TreeMap<Integer, String> tree_map
= new TreeMap<Integer, String>();
// Mapping string values to int keys
// using put() method
tree_map.put(10, "Geeks");
tree_map.put(15, "4");
tree_map.put(20, "Geeks");
tree_map.put(25, "Welcomes");
tree_map.put(30, "You");
// printing all elements of TreeMap
System.out.println("Initial Mappings are: "
+ tree_map);
// Displaying the cloned TreeMap
// using clone()
System.out.println("The cloned map look like this: "
+ tree_map.clone());
}
}
輸出
Initial Mappings are: {10=Geeks, 15=4, 20=Geeks, 25=Welcomes, 30=You} The cloned map look like this: {10=Geeks, 15=4, 20=Geeks, 25=Welcomes, 30=You}
示例 2:將整數值映射到字符串鍵
Java
// Java Program to Illustrate clone() Method
// of TreeMap class
// Importing required classes
import java.util.*;
// Main class
public class GFG {
// Main driver method
public static void main(String[] args)
{
// Creating an empty TreeMap
TreeMap<String, Integer> tree_map
= new TreeMap<String, Integer>();
// Mapping int values to string keys
// using put() method
tree_map.put("Geeks", 10);
tree_map.put("4", 15);
tree_map.put("Geeks", 20);
tree_map.put("Welcomes", 25);
tree_map.put("You", 30);
// Displaying all elements initial mapping TreeMap
System.out.println("Initial Mappings are: "
+ tree_map);
// Displaying the cloned TreeMap
// using clone()
System.out.println("The cloned map look like this: "
+ tree_map.clone());
}
}
輸出
Initial Mappings are: {4=15, Geeks=20, Welcomes=25, You=30} The cloned map look like this: {4=15, Geeks=20, Welcomes=25, You=30}
Note: Similarly the same operation can be performed with any type of Mappings with variation and combination of different data types.
相關用法
- Java TreeMap clone()用法及代碼示例
- Java TreeMap clear()用法及代碼示例
- Java TreeMap ceilingEntry()用法及代碼示例
- Java TreeMap ceilingKey()用法及代碼示例
- Java TreeMap comparator()用法及代碼示例
- Java TreeMap containsKey()用法及代碼示例
- Java TreeMap containsValue()用法及代碼示例
- Java TreeMap ceilingEntry()、ceilingKey()用法及代碼示例
- Java TreeMap firstKey()用法及代碼示例
- Java TreeMap pollFirstEntry()用法及代碼示例
- Java TreeMap pollLastEntry()用法及代碼示例
- Java TreeMap entrySet()用法及代碼示例
- Java TreeMap floorKey()用法及代碼示例
- Java TreeMap get()用法及代碼示例
- Java TreeMap headMap()用法及代碼示例
- Java TreeMap higherEntry()用法及代碼示例
- Java TreeMap higherKey()用法及代碼示例
- Java TreeMap keySet()用法及代碼示例
- Java TreeMap lastKey()用法及代碼示例
- Java TreeMap lowerEntry()用法及代碼示例
- Java TreeMap lowerKey()用法及代碼示例
- Java TreeMap navigableKeySet()用法及代碼示例
- Java TreeMap put()用法及代碼示例
- Java TreeMap putAll()用法及代碼示例
- Java TreeMap remove()用法及代碼示例
注:本文由純淨天空篩選整理自Chinmoy Lenka大神的英文原創作品 TreeMap clone() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。