设计模式-原型模式
设计模式-原型模式1.克隆羊问题现在有一只羊tom,姓名为: tom, 年龄为:1,颜色为:白色,请编写程序创建和tom羊属性完全相同的10只羊。2.传统方式解决克隆羊问题package prototype.traditional;public class Sheep { private String name; private int age; private String color; public Sheep(String name, int age, S