Thing.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:0k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.section3;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  * 万物
  6.  */
  7. public class Thing implements Cloneable{
  8. public Thing(){
  9. System.out.println("构造函数被执行了...");
  10. }
  11. @Override
  12. public Thing clone(){
  13. Thing thing=null;
  14. try {
  15. thing = (Thing)super.clone();
  16. } catch (CloneNotSupportedException e) {
  17. e.printStackTrace();
  18. }
  19. return thing;
  20. }
  21. }