工厂模式-简单工厂

来源:互联网 发布:阿里云国际版打不开 编辑:程序博客网 时间:2024/04/27 21:32

简单工厂

abstract class Fruit{} class Apple extends Fruit{} class Orange extends Fruit{ } class FruitFactory{ pulic static Fruit getFruit(String fruitType){if (“apple” == fruitType){return new Apple();} else if (“orange” == fruitType) {return new Orange();}}} Client: Apple apple = FruitFactory.getFruit(“apple”); ...