Java Hashtable clone()方法
java.util.Hashtable.clone() 返回Hashtable的浅表副本。
1 语法
public Object clone()
2 参数
无
3 返回值
返回Hashtable的浅表副本。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.Hashtable.clone()方法的例子
*/
import java.util.*;
public class Demo {
public static void main(String args[]) {
// create two hash tables
Hashtable htable = new Hashtable();
Hashtable htableclone = new Hashtable();
// put values into the table
htable.put(1, "A");
htable.put(2, "B");
htable.put(3, "C");
htable.put(4, "D");
// check table content
System.out.println("Original hash table content: "+htable);
// clone hash table
htableclone = (Hashtable)htable.clone();
// check content after clone
System.out.println("Clone table content: "+htableclone);
}
}
输出结果为:
Original hash table content: {4=D, 3=C, 2=B, 1=A}
Clone table content: {4=D, 3=C, 2=B, 1=A}
热门文章
优秀文章