BeanUtils.copyProperties的使用(深拷贝,浅拷贝)

深拷贝和浅拷贝的区别

  • 浅拷贝:只是调用子对象的set方法,并没有将所有属性拷贝。(也就是说,引用的一个内存地址)
  • 深拷贝:将子对象的属性也拷贝过去。

 BeanUtils.copyProperties是根据什么来匹配拷贝的?

1、根据属性的类型和定义的属性名字

        以下两种情况都不会进行拷贝

  •                 
  •                 

        

        只有属性的类型和定义的属性名字均对应是才会进行拷贝

BeanUtils.copyProperties是深拷贝还是浅拷贝?具体得看拷贝的对象里面成员变量是否包含对其它对象的引用

 拷贝的对象里面的成员变量引用了其它对象时和基本数据类型的区别 

CustomPopup类

@Data
public class CustomPopup {

    private String buttonImageUrl;

    List<CustomPopupPo> langImageUrlInput;
}

MyCustomPopup类 

@Data
public class MyCustomPopup {

    private String buttonImageUrl;

    List<CustomPopupPo> langImageUrlInput;
}

test类

@Test
    public void demo6(){
        CustomPopup customPopup = new CustomPopup();
        MyCustomPopup myCustomPopup = new MyCustomPopup();
        customPopup.setButtonImageUrl("123");
        List<CustomPopupPo> customPopupPoList = new ArrayList<>();
        CustomPopupPo customPopupPo = new CustomPopupPo();
        customPopupPoList.add(customPopupPo);
        customPopup.setLangImageUrlInput(customPopupPoList);
        BeanUtils.copyProperties(customPopup,myCustomPopup);
        customPopup.setButtonImageUrl("321");
        System.out.println(customPopup.getLangImageUrlInput().hashCode());
        System.out.println(myCustomPopup.getLangImageUrlInput().hashCode());
        System.out.println(customPopup.getButtonImageUrl());
        System.out.println(myCustomPopup.getButtonImageUrl());
        System.out.println(customPopup.getButtonImageUrl().hashCode());
        System.out.println(myCustomPopup.getButtonImageUrl().hashCode());
    }

结果

         可以看到拷贝前后两个对象的引用对象的成员变量langImageUrlInput的哈希值是一样的,说明引用的是同一个对象,是浅拷贝。

        而基本数据类型的成员变量buttonImageUrl拷贝前后的哈希值不一致,说明是深拷贝。

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

阿彬在上路

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

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

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

打赏作者

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

抵扣说明:

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

余额充值