java克隆-深拷贝与浅拷贝

博客主要介绍了Java中的浅克隆和深克隆。浅克隆和深克隆是Java克隆机制的重要内容,对于理解对象复制和数据处理有重要意义。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

浅克隆:

class Student   implements Cloneable{
    public String sname;
    public Date birthday;
    public Student() {}
    public Student(String sname, Date birthday) {
        //super();
        this.sname = sname;
        this.birthday = birthday;
    }

    public String getSname() {
        return sname;
    }
    public void setSname(String sname) {
        this.sname = sname;
    }
    public Date getBirthday() {
        return birthday;
    }
    public void setBirthday(Date birthday) {
        this.birthday = birthday;
    }
    @Override
    protected Object clone() throws CloneNotSupportedException {
        Object obj= super.clone();
        return obj;
    }
}

        Student s1=new Student("link",new Date(123456));        
        System.out.println(s1);
        //克隆的对象:值为原来的值
        //属性为浅复制,即指向相同的属性值,其值未做拷贝
        Student s2=(Student) s1.clone();
        System.out.println(s2);
        System.out.println(s1.sname==s2.sname);//true
        System.out.println(s1.birthday==s2.birthday);//true

深克隆:

class Student   implements Cloneable{
    public String sname;
    public Date birthday;
    public Student() {}
    public Student(String sname, Date birthday) {
        //super();
        this.sname = sname;
        this.birthday = birthday;
    }

    public String getSname() {
        return sname;
    }
    public void setSname(String sname) {
        this.sname = sname;
    }
    public Date getBirthday() {
        return birthday;
    }
    public void setBirthday(Date birthday) {
        this.birthday = birthday;
    }
    @Override
    protected Object clone() throws CloneNotSupportedException {
        Object obj= super.clone();
        Student s=(Student) obj;
        s.sname=new String(this.getSname());
        s.birthday=(Date) this.birthday.clone();    
        return obj;
    }
}


        Student s1=new Student("link",new Date(123456));        
        System.out.println(s1);
        Student s2=(Student) s1.clone();
        System.out.println(s2);
        System.out.println(s1.sname==s2.sname);//false
        System.out.println(s1.birthday==s2.birthday);//false
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值