Java之工厂模式

interface Fruit {
    void eat();
}

class Apple implements Fruit {

    public void eat() {
        System.out.println("I am eating apple.");
    }

}

class Orange implements Fruit {

    public void eat() {
        System.out.println("I am  eating orange.");
    }

}

class Factory {
    public Fruit getInstance(String className) {
        Fruit f = null;
        if ("apple".equals(className)) {
            f = new Apple();
        } else {
            f = new Orange();
        }
        return f;
    }
}

public class InterfaceDemo04 {
    public static void main(String[] args) {
        Factory factory = new Factory();
        Fruit f = null;
        f = factory.getInstance("apple");
        f.eat();
    }
}

posted @ 2014-08-04 10:35  塔斯曼  阅读(97)  评论(0编辑  收藏  举报