模式
文章平均质量分 83
tfc2005
这个作者很懒,什么都没留下…
展开
-
简单工厂模式
简单工厂模式就是由一个工厂类根据参数来决定创立出那一种产品类的实例。下面的UML类图就精确定义了简单工厂模式的结构。 简单工厂模式就是由一个工厂类根据参数来决定创立出那一种产品类的实例。下面的UML类图就精确定义了简单工厂模式的结构。 public interface FruitIF { void grow(); void harvest(); void plant(); String原创 2005-06-10 12:18:00 · 1020 阅读 · 0 评论 -
建筑者模式
definition定义 Separate the construction of a complex object from its representation so that the same construction process can create different representat转载 2006-04-29 08:39:00 · 847 阅读 · 0 评论