当前位置:   article > 正文

【137期】面试官:问点儿基础的,你能说说Java深拷贝和浅拷贝区别吗

teacher teacher=new teacher

一、拷贝的引入

(1)、引用拷贝

创建一个指向对象的引用变量的拷贝。

  1. Teacher teacher = new Teacher(Taylor,26);
  2. Teacher otherteacher = teacher;
  3. System.out.println(teacher);
  4. System.out.println(otherteacher);

输出结果:

  1. blog.Teacher@355da254
  2. blog.Teacher@355da254

结果分析:由输出结果可以看出,它们的地址值是相同的,那么它们肯定是同一个对象。teacher和otherteacher的只是引用而已,他们都指向了一个相同的对象Teacher(“Taylor”,26)。这就叫做引用拷贝。往期:一百期面试题汇总

(2)、对象拷贝

创建对象本身的一个副本。

  1. Teacher teacher = new Teacher(Swift,26); 
  2. Teacher otherteacher = (Teacher)teacher.clone(); 
  3. System.out.println(teacher);
  4. System.out.println(otherteacher);

输出结果:

  1. blog.Teacher@355da254
  2. blog.Teacher@4dc63996

结果分析:由输出结果可以看出,它们的地址是不同的,也就是说创建了新的对象, 而不是把原对象的地址赋给了一个新的引用变量,这就叫做对象拷贝。

注:深拷贝和浅拷贝都是对象拷贝

二、浅拷贝

(1)、定义

被复制对象的所有变量都含有与原来的对象相同的值,而所有的对其他对象的引用仍然指向原来的对象。即对象的浅拷贝会对“主”对象进行拷贝,但不会复制主对象里面的对象。”里面的对象“会在原来的对象和它的副本之间共享。往期:100期面试题汇总

简而言之,浅拷贝仅仅复制所考虑的对象,而不复制它所引用的对象

(2)、浅拷贝实例

  1. package com.test;
  2. public class ShallowCopy {
  3.     public static void main(String[] args) throws CloneNotSupportedException {
  4.         Teacher teacher = new Teacher();
  5.         teacher.setName(riemann);
  6.         teacher.setAge(27);
  7.         Student2 student1 = new Student2();
  8.         student1.setName(edgar);
  9.         student1.setAge(18);
  10.         student1.setTeacher(teacher);
  11.         Student2 student2 = (Student2) student1.clone();
  12.         System.out.println(拷贝后);
  13.         System.out.println(student2.getName());
  14.         System.out.println(student2.getAge());
  15.         System.out.println(student2.getTeacher().getName());
  16.         System.out.println(student2.getTeacher().getAge());
  17.         System.out.println(修改老师的信息后-------------);
  18.         // 修改老师的信息
  19.         teacher.setName(Games);
  20.         System.out.println(student1.getTeacher().getName());
  21.         System.out.println(student2.getTeacher().getName());
  22.     }
  23. }
  24. class Teacher implements Cloneable {
  25.     private String name;
  26.     private int age;
  27.     public String getName() {
  28.         return name;
  29.     }
  30.     public void setName(String name) {
  31.         this.name = name;
  32.     }
  33.     public int getAge() {
  34.         return age;
  35.     }
  36.     public void setAge(int age) {
  37.         this.age = age;
  38.     }
  39. }
  40. class Student2 implements Cloneable {
  41.     private String name;
  42.     private int age;
  43.     private Teacher teacher;
  44.     public String getName() {
  45.         return name;
  46.     }
  47.     public void setName(String name) {
  48.         this.name = name;
  49.     }
  50.     public int getAge() {
  51.         return age;
  52.     }
  53.     public void setAge(int age) {
  54.         this.age = age;
  55.     }
  56.     public Teacher getTeacher() {
  57.         return teacher;
  58.     }
  59.     public void setTeacher(Teacher teacher) {
  60.         this.teacher = teacher;
  61.     }
  62.     public Object clone() throws CloneNotSupportedException {
  63.         Object object = super.clone();
  64.         return object;
  65.     }
  66. }

输出结果:

  1. 拷贝后
  2. edgar
  3. 18
  4. riemann
  5. 27
  6. 修改老师的信息后-------------
  7. Games
  8. Games

结果分析:两个引用student1和student2指向不同的两个对象,但是两个引用student1和student2中的两个teacher引用指向的是同一个对象,所以说明是浅拷贝。

三、深拷贝

(1)、定义

深拷贝是一个整个独立的对象拷贝,深拷贝会拷贝所有的属性,并拷贝属性指向的动态分配的内存。当对象和它所引用的对象一起拷贝时即发生深拷贝。深拷贝相比于浅拷贝速度较慢并且花销较大。

简而言之,深拷贝把要复制的对象所引用的对象都复制了一遍。

往期:100期面试题汇总

(2)、深拷贝实例

  1. package com.test;
  2. public class DeepCopy {
  3.     public static void main(String[] args) throws CloneNotSupportedException {
  4.         Teacher2 teacher = new Teacher2();
  5.         teacher.setName(riemann);
  6.         teacher.setAge(27);
  7.         Student3 student1 = new Student3();
  8.         student1.setName(edgar);
  9.         student1.setAge(18);
  10.         student1.setTeacher(teacher);
  11.         Student3 student2 = (Student3) student1.clone();
  12.         System.out.println(拷贝后);
  13.         System.out.println(student2.getName());
  14.         System.out.println(student2.getAge());
  15.         System.out.println(student2.getTeacher().getName());
  16.         System.out.println(student2.getTeacher().getAge());
  17.         System.out.println(修改老师的信息后-------------);
  18.         // 修改老师的信息
  19.         teacher.setName(Games);
  20.         System.out.println(student1.getTeacher().getName());
  21.         System.out.println(student2.getTeacher().getName());
  22.     }
  23. }
  24. class Teacher2 implements Cloneable {
  25.     private String name;
  26.     private int age;
  27.     public String getName() {
  28.         return name;
  29.     }
  30.     public void setName(String name) {
  31.         this.name = name;
  32.     }
  33.     public int getAge() {
  34.         return age;
  35.     }
  36.     public void setAge(int age) {
  37.         this.age = age;
  38.     }
  39.     public Object clone() throws CloneNotSupportedException {
  40.         return super.clone();
  41.     }
  42. }
  43. class Student3 implements Cloneable {
  44.     private String name;
  45.     private int age;
  46.     private Teacher2 teacher;
  47.     public String getName() {
  48.         return name;
  49.     }
  50.     public void setName(String name) {
  51.         this.name = name;
  52.     }
  53.     public int getAge() {
  54.         return age;
  55.     }
  56.     public void setAge(int age) {
  57.         this.age = age;
  58.     }
  59.     public Teacher2 getTeacher() {
  60.         return teacher;
  61.     }
  62.     public void setTeacher(Teacher2 teacher) {
  63.         this.teacher = teacher;
  64.     }
  65.     public Object clone() throws CloneNotSupportedException {
  66.         // 浅复制时:
  67.         // Object object = super.clone();
  68.         // return object;
  69.         // 改为深复制:
  70.         Student3 student = (Student3) super.clone();
  71.         // 本来是浅复制,现在将Teacher对象复制一份并重新set进来
  72.         student.setTeacher((Teacher2) student.getTeacher().clone());
  73.         return student;
  74.     }
  75. }

输出结果:

  1. 拷贝后
  2. edgar
  3. 18
  4. riemann
  5. 27
  6. 修改老师的信息后-------------
  7. Games
  8. riemann

结果分析:

两个引用student1和student2指向不同的两个对象,两个引用student1和student2中的两个teacher引用指向的是两个对象,但对teacher对象的修改只能影响student1对象,所以说是深拷贝。

作者:riemann
blog.csdn.net/riemann_/article/details/87217229

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/616711
推荐阅读
相关标签
  

闽ICP备14008679号