Checking to see if a reference can be cloned : 克隆 « 类 « 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 »  » 克隆屏幕截图 
Checking to see if a reference can be cloned
Checking to see if a reference can be cloned
  

// : appendixa:CheckCloneable.java
// Checking to see if a reference can be cloned.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.

// Can't clone this because it doesn't override clone():
class Ordinary {
}

// Overrides clone, but doesn't implement Cloneable:

class WrongClone extends Ordinary {
  public Object clone() throws CloneNotSupportedException {
    return super.clone()// Throws exception
  }
}

// Does all the right things for cloning:

class IsCloneable extends Ordinary implements Cloneable {
  public Object clone() throws CloneNotSupportedException {
    return super.clone();
  }
}

// Turn off cloning by throwing the exception:

class NoMore extends IsCloneable {
  public Object clone() throws CloneNotSupportedException {
    throw new CloneNotSupportedException();
  }
}

class TryMore extends NoMore {
  public Object clone() throws CloneNotSupportedException {
    // Calls NoMore.clone(), throws exception:
    return super.clone();
  }
}

class BackOn extends NoMore {
  private BackOn duplicate(BackOn b) {
    // Somehow make a copy of b and return that copy.
    // This is a dummy copy, just to make the point:
    return new BackOn();
  }

  public Object clone() {
    // Doesn't call NoMore.clone():
    return duplicate(this);
  }
}

// You can't inherit from this, so you can't override
// the clone method as you can in BackOn:

final class ReallyNoMore extends NoMore {
}

public class CheckCloneable {

  public static Ordinary tryToClone(Ordinary ord) {
    String id = ord.getClass().getName();
    System.out.println("Attempting " + id);
    Ordinary x = null;
    if (ord instanceof Cloneable) {
      try {
        x = (Ordinary) ((IsCloneableord).clone();
        System.out.println("Cloned " + id);
      catch (CloneNotSupportedException e) {
        System.err.println("Could not clone " + id);
      }
    else {
      System.out.println("Doesn't implement Cloneable");
    }
    return x;
  }

  public static void main(String[] args) {
    // Upcasting:
    Ordinary[] ord = new IsCloneable()new WrongClone()new NoMore(),
        new TryMore()new BackOn()new ReallyNoMore()};
    Ordinary x = new Ordinary();
    // This won't compile; clone() is protected in Object:
    //! x = (Ordinary)x.clone();
    // Checks first to see if a class implements Cloneable:
    for (int i = 0; i < ord.length; i++)
      tryToClone(ord[i]);

  }
///:~


           
         
    
  
Related examples in the same category
1. 克隆
2. 类被宣布为cloneable 。
3. 数组自动cloneable
4. 克隆对象
5. 创建一个深度复制
6. 浅复制测试浅复制测试
7. 深复制测试深复制测试
8. 利用序列进行深拷贝克隆。
9. 克隆试验克隆试验
10. 创建的本地副本与克隆创建的本地副本与克隆
11. 可以插入Cloneability在任何层次上的继承
12. 克隆组成对象克隆组成对象
13. 序列和克隆序列和克隆
14. Go through a few gyrations to add cloning to your own classGo through a few gyrations to add cloning to your own class
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.