这个模式主要用于复制对象,我们可以
要实现原型模式需要我们实现cloneable接口
public abstract class Shape implements Cloneable {
private String id;
2020-11-01