摘要:
抽象工厂模式:处理不同产品等级的对象(产品族) public interface Human { public void getSound(); public void getColor(); public void getSex();} public abstract class BlackHum 阅读全文
摘要:
工厂方法模式只能处理同一个产品等级下的对象 public interface Human { public void getSound(); public void getColor(); } public class BlackHuman implements Human { @Override 阅读全文