Thing.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
- package com.company.section5;
- import java.util.ArrayList;
- /**
- * @author cbf4Life cbf4life@126.com
- * I'm glad to share my knowledge with you all.
- * 万物
- */
- public class Thing implements Cloneable{
- //定义一个私有变量
- private final ArrayList<String> arrayList = new ArrayList<String>();
- @Override
- public Thing clone(){
- Thing thing=null;
- try {
- thing = (Thing)super.clone();
- //this.arrayList = (ArrayList<String>)this.arrayList.clone();
- } catch (CloneNotSupportedException e) {
- e.printStackTrace();
- }
- return thing;
- }
-
- //设置HashMap的值
- public void setValue(String value){
- this.arrayList.add(value);
- }
-
- //取得arrayList的值
- public ArrayList<String> getValue(){
- return this.arrayList;
- }
-
- }