工厂模式-工厂方法

来源:互联网 发布:在线教育平台软件 编辑:程序博客网 时间:2024/04/28 12:58

工厂方法

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();