码迷,mamicode.com
首页 > 其他好文 > 详细

简易的工厂模式

时间:2018-08-12 15:48:34      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:string   pre   interface   写法   over   apple   nbsp   public   模式   

/**
 * 工厂模式
 */
public class FactoryPattern {

    public static void main(String[] args) {
//        原始写法
//        IFruit fruit = new Apple();
//        fruit.eat();
        String name = "bananer";
        String name2 = "apple";
        IFruit fruit = FruitFactory.getInstance(name2);
        fruit.eat();
    }

}



interface IFruit{
    public void eat();
}

class Apple implements IFruit{

    @Override
    public void eat() {
        System.out.println("削皮吃苹果!");
    }
}

class Bananer implements IFruit{

    @Override
    public void eat() {
        System.out.println("剥皮吃香蕉!");
    }
}

class FruitFactory{
    public static IFruit getInstance(String name){
        if("apple".equals(name)){
            return new Apple();
        }else if("bananer".equals(name)){
            return new Bananer();
        }else{
            return null;
        }
    }

}

 

简易的工厂模式

标签:string   pre   interface   写法   over   apple   nbsp   public   模式   

原文地址:https://www.cnblogs.com/linhuanjie/p/9462851.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!