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

软件工程

开发平台:

Java

  1. package com.company.section4;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class Client {
  7. public static void main(String[] args) {
  8. //产生一个对象
  9. Thing thing = new Thing();
  10. //设置一个值
  11. thing.setValue("张三");
  12. //拷贝一个对象
  13. Thing cloneThing = thing.clone();
  14. cloneThing.setValue("李四");
  15. System.out.println(thing.getValue());
  16. }
  17. }