原型模式 继承Cloneable接口,重写clone()方法。 public class Sheep implements Cloneable { private String name; private int age; private String color; public Sheep(String name, int age, String color) { this.name = name; this.age = age; this.color = color; } public ...