工厂模式-工厂方法

来源:互联网 发布:在线教育平台软件 编辑:程序博客网 时间:2024/06/09 21:43

工厂方法

interface IFruitFactory{puhlic Fruit getFruit();} class AppleFactory implements IFruitFactory{public Fruit getFruit(){ //生产苹果 return new Apple();}} Client: IFruitFactory factory = new AppleFactory();Fruit fruit = new factory.getFruit(); 


原创粉丝点击