package com.pattern.PrototypePattern.materials; import com.pattern.PrototypePattern.materials.po.Shape; import com.pattern.PrototypePattern.materials.po.ShapeCache; /** * 原型模式 * @author lx * @date 2021/11/24 14:54 **/ public class PrototypeMain { public void main() { ShapeCache.init(); Shape c = ShapeCache.getShape("c"); System.err.println(c.getName()); } }