深复制测试 : 克隆 « 类 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java »  » 克隆屏幕截图 
深复制测试
深复制测试
  

/*
Correct Output:
Original (orginal values): Person-A - Civic
Clone (before change): Person-A - Civic
Clone (after change): Person-B - Accord
Original (after clone is modified): Person-A - Civic

*/

/*
Software Architecture Design Patterns in Java
by Partha Kuchana 

Auerbach Publications

*/



class Person implements Cloneable {
  //Lower-level object
  private Car car;

  private String name;

  public Car getCar() {
    return car;
  }

  public String getName() {
    return name;
  }

  public void setName(String s) {
    name = s;
  }

  public Person(String s, String t) {
    name = s;
    car = new Car(t);
  }

  public Object clone() {
    //Deep copy
    Person p = new Person(name, car.getName());
    return p;
  }
}

class Car {

  private String name;

  public String getName() {
    return name;
  }

  public void setName(String s) {
    name = s;
  }

  public Car(String s) {
    name = s;
  }
}

public class DeepCopyTest {

  public static void main(String[] args) {
    //Original Object
    Person p = new Person("Person-A""Civic");
    System.out.println("Original (orginal values): " + p.getName() " - "
        + p.getCar().getName());

    //Clone as a shallow copy
    Person q = (Personp.clone();

    System.out.println("Clone (before change): " + q.getName() " - "
        + q.getCar().getName());

    //change the primitive member
    q.setName("Person-B");

    //change the lower-level object
    q.getCar().setName("Accord");

    System.out.println("Clone (after change): " + q.getName() " - "
        + q.getCar().getName());

    System.out.println("Original (after clone is modified): " + p.getName()
        " - " + p.getCar().getName());

  }
}

           
         
    
  
Related examples in the same category
1. 克隆
2. 类被宣布为cloneable 。
3. 数组自动cloneable
4. 克隆对象
5. 创建一个深度复制
6. 浅复制测试浅复制测试
7. 利用序列进行深拷贝克隆。
8. 克隆试验克隆试验
9. 创建的本地副本与克隆创建的本地副本与克隆
10. 可以插入Cloneability在任何层次上的继承
11. 克隆组成对象克隆组成对象
12. 序列和克隆序列和克隆
13. Go through a few gyrations to add cloning to your own classGo through a few gyrations to add cloning to your own class
14. Checking to see if a reference can be clonedChecking to see if a reference can be cloned
15. The clone operation works for only a few items in the standard Java libraryThe clone operation works for only a few items in the standard Java library
16. 示范克隆
17. 简单的演示避免副作用使用Object.clone简单的演示避免副作用使用Object.clone
18. 克隆对象与Clone方法从父
19. 操控性能在克隆操作
20. 克隆演示
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.