A constructor for copying an object of the same : 构造器 « 类 « 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 »  » 构造器屏幕截图 
A constructor for copying an object of the same
A constructor for copying an object of the same

// : appendixa:CopyConstructor.java
// A constructor for copying an object of the same
// type, as an attempt to create a local copy.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.

import java.lang.reflect.Constructor;

class FruitQualities {
  private int weight;

  private int color;

  private int firmness;

  private int ripeness;

  private int smell;

  // etc.
  public FruitQualities() { // Default constructor
    // Do something meaningful...
  }

  // Other constructors:
  // ...
  // Copy constructor:
  public FruitQualities(FruitQualities f) {
    weight = f.weight;
    color = f.color;
    firmness = f.firmness;
    ripeness = f.ripeness;
    smell = f.smell;
    // etc.
  }
}

class Seed {
  // Members...
  public Seed() { /* Default constructor */
  }

  public Seed(Seed s) { /* Copy constructor */
  }
}

class Fruit {
  private FruitQualities fq;

  private int seeds;

  private Seed[] s;

  public Fruit(FruitQualities q, int seedCount) {
    fq = q;
    seeds = seedCount;
    s = new Seed[seeds];
    for (int i = 0; i < seeds; i++)
      s[inew Seed();
  }

  // Other constructors:
  // ...
  // Copy constructor:
  public Fruit(Fruit f) {
    fq = new FruitQualities(f.fq);
    seeds = f.seeds;
    s = new Seed[seeds];
    // Call all Seed copy-constructors:
    for (int i = 0; i < seeds; i++)
      s[inew Seed(f.s[i]);
    // Other copy-construction activities...
  }

  // To allow derived constructors (or other
  // methods) to put in different qualities:
  protected void addQualities(FruitQualities q) {
    fq = q;
  }

  protected FruitQualities getQualities() {
    return fq;
  }
}

class Tomato extends Fruit {
  public Tomato() {
    super(new FruitQualities()100);
  }

  public Tomato(Tomato t) { // Copy-constructor
    super(t)// Upcast for base copy-constructor
    // Other copy-construction activities...
  }
}

class ZebraQualities extends FruitQualities {
  private int stripedness;

  public ZebraQualities() { // Default constructor
    super();
    // do something meaningful...
  }

  public ZebraQualities(ZebraQualities z) {
    super(z);
    stripedness = z.stripedness;
  }
}

class GreenZebra extends Tomato {
  public GreenZebra() {
    addQualities(new ZebraQualities());
  }

  public GreenZebra(GreenZebra g) {
    super(g)// Calls Tomato(Tomato)
    // Restore the right qualities:
    addQualities(new ZebraQualities());
  }

  public void evaluate() {
    ZebraQualities zq = (ZebraQualitiesgetQualities();
    // Do something with the qualities
    // ...
  }
}

public class CopyConstructor {

  public static void ripen(Tomato t) {
    // Use the "copy constructor":
    t = new Tomato(t);
    System.out.println("In ripen, t is a " + t.getClass().getName());
  }

  public static void slice(Fruit f) {
    f = new Fruit(f)// Hmmm... will this work?
    System.out.println("In slice, f is a " + f.getClass().getName());
  }

  public static void ripen2(Tomato t) {
    try {
      Class c = t.getClass();
      // Use the "copy constructor":
      Constructor ct = c.getConstructor(new Class[] { });
      Object obj = ct.newInstance(new Object[] { });
      System.out.println("In ripen2, t is a " + obj.getClass().getName());
    catch (Exception e) {
      System.out.println(e);
    }
  }

  public static void slice2(Fruit f) {
    try {
      Class c = f.getClass();
      Constructor ct = c.getConstructor(new Class[] { });
      Object obj = ct.newInstance(new Object[] { });
      System.out.println("In slice2, f is a " + obj.getClass().getName());
    catch (Exception e) {
      System.out.println(e);
    }
  }

  public static void main(String[] args) {
    Tomato tomato = new Tomato();
    ripen(tomato)// OK
    slice(tomato)// OOPS!
    ripen2(tomato)// OK
    slice2(tomato)// OK
    GreenZebra g = new GreenZebra();
    ripen(g)// OOPS!
    slice(g)// OOPS!
    ripen2(g)// OK
    slice2(g)// OK
    g.evaluate();

  }
///:~



           
       
Related examples in the same category
1. Paying attention to exceptions in constructorsPaying attention to exceptions in constructors
2. Order of constructor callsOrder of constructor calls
3. Constructors and polymorphism don't produce what you might expectConstructors and polymorphism don't produce what you might expect
4. 构造函数初始化与组成构造函数初始化与组成
5. 一个简单的演示构造一个简单的演示构造
6. 构造器可以有参数构造器可以有参数
7. 查看构造冲突
8. Show that if your class has no constructors, your superclass constructors still get calledShow that if your class has no constructors, your superclass constructors still get called
9. Constructor calls during inheritanceConstructor calls during inheritance
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.