Java Map深度复制

Map深度复制

目录

Map深度复制

1,new HashMap<>(Object);

2,Put All;

3,串行化复制;

总结:


 如何对Map类型的数据进行深度复制,有几种方式呢?

 

1,new HashMap<>(Object);

代码:

public static void main(String[] args) throws IOException, ClassNotFoundException {
    testNewMap();
}

public static void testNewMap(){
    System.out.println("====== new HashMap<>(e) =======");
    Map<String,  Object> one = new HashMap<>();
    one.put("one","fish");
    Map<String,  Object> two = new HashMap<>(one);
    System.out.println("init: one: "+ one.toString());
    System.out.println("init: two: "+ two.toString());
    System.out.println("====== change to grass =======");
    two.put("one","grass");
    System.out.println("change: one: "+ one.toString());
    System.out.println("change: two: "+ two.toString());
    System.out.println();
}

  使用  new HashMap<>(one) 的方式

结果:

====== new HashMap<>(e) =======

init: one: {one=fish}

init: two: {one=fish}

====== change to grass =======

change: one: {one=fish}

change: two: {one=grass}

 

2,Put All;

代码:

public static void main(String[] args) throws IOException, ClassNotFoundException {

    testPutAllMap();

}



public static void testPutAllMap(){

    System.out.println("====== put all map =======");

    Map<String,  Object> one = new HashMap<>();

    one.put("one","fish");

    Map<String,  Object> two = new HashMap<>();

    two.putAll(one);

    System.out.println("init: one: "+ one.toString());

    System.out.println("init: two: "+ two.toString());

    System.out.println("====== change to monkey =======");

    two.put("one","monkey");

    System.out.println("change: one: "+ one.toString());

    System.out.println("change: two: "+ two.toString());

    System.out.println();

}

 

结果:

====== put all map =======

init: one: {one=fish}

init: two: {one=fish}

====== change to monkey =======

change: one: {one=fish}

change: two: {one=monkey}

这边会标黄,处理后会变成第一种的情况。

 

3,串行化复制;

代码:

public static void main(String[] args) throws IOException, ClassNotFoundException {
    testDeepCopyMap();
}

public static void testDeepCopyMap() throws IOException, ClassNotFoundException {
    System.out.println("====== DeepCopy Map =======");
    Map<String,  Object> one = new HashMap<>();
    one.put("one","fish");
    Map<String,  Object> two =  CloneUtils.cloneMap(one);;
    System.out.println("init: one: "+ one.toString());
    System.out.println("init: two: "+ two.toString());
    System.out.println("====== change to snake =======");
    two.put("one","snake");
    System.out.println("change: one: "+ one.toString());
    System.out.println("change: two: "+ two.toString());
    System.out.println();
}

 

串行化代码:

public class CloneUtils {

    public static <T extends Serializable> T clone(T src) throws IOException, ClassNotFoundException {
        ObjectInputStream ois = getInputStream(src);
        //返回生成的新对象
        @SuppressWarnings("unchecked")
        T cloneObj = (T) ois.readObject();
        ois.close();
        return cloneObj;

    }

    public static <T> List<T> deepCopy(List<T> src) throws IOException, ClassNotFoundException {
        ObjectInputStream ois = getInputStream(src);
        @SuppressWarnings("unchecked")
        List<T> dest = (List<T>) ois.readObject();
        ois.close();
        return dest;
    }

    public static <K,V> Map<K,V> cloneMap(Map<K,V> src) throws IOException, ClassNotFoundException {
        ObjectInputStream ois = getInputStream(src);
        @SuppressWarnings("unchecked")
        Map<K, V> result =   (Map<K, V>)     ois.readObject();
        ois.close();
        return result;

    }

    private static ObjectInputStream getInputStream(Object src) throws IOException, ClassNotFoundException {
        //写入字节流
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        ObjectOutputStream obs = new ObjectOutputStream(out);
        obs.writeObject(src);
        obs.close();
        //分配内存,写入原始对象,生成新对象
        ByteArrayInputStream ios = new ByteArrayInputStream(out.toByteArray());
        return new ObjectInputStream(ios);
    }
}

 

结果:

====== DeepCopy Map =======

init: one: {one=fish}

init: two: {one=fish}

====== change to snake =======

change: one: {one=fish}

change: two: {one=snake}

 

总结:

   在使用Map复制的时候,一般用第一种的方式,如果大量使用,也可以考虑用第三种方式。

 

  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

天狼1222

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值