clone()
方法clone()方法在java.util包中可用。
clone()方法用于返回此IdentityHashMap的浅表副本。
clone()方法是一种非静态方法,只能使用类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。
clone()方法在克隆对象时不会引发异常。
语法:
public Object clone();
参数:
它不接受任何参数。
返回值:
该方法的返回类型为Object,它返回此IdentityHashMap的克隆副本。
示例
//Java程序演示示例 //clone()IdentityHashMap的Object方法的说明 import java.util.*; public class CloneOfIdentityHashMap { public static void main(String[] args) { //实例化一个IdentityHashMap对象 IdentityHashMap < Integer, String > ihm = new IdentityHashMap < Integer, String > (); IdentityHashMap < Integer, String > clone_map = new IdentityHashMap < Integer, String > (); //通过使用put()方法是添加 //IdentityHashMap中的键值对 ihm.put(10, "C"); ihm.put(20, "C++"); ihm.put(50, "JAVA"); ihm.put(40, "PHP"); ihm.put(30, "SFDC"); //显示IdentityHashMap和clone_map- System.out.println("IdentityHashMap: " + ihm); System.out.println("CloneMap: " + clone_map); //通过使用clone()方法是克隆 //这个对象 clone_map = (IdentityHashMap) ihm.clone(); //显示clone_map- System.out.println("ihm.clone(): " + clone_map); } }
输出结果
IdentityHashMap: {20=C++, 40=PHP, 50=JAVA, 30=SFDC, 10=C} CloneMap: {} ihm.clone(): {20=C++, 40=PHP, 50=JAVA, 30=SFDC, 10=C}