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

工厂设计模式

时间:2015-11-22 16:06:19      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

例子:

interface Fruit{
    public void eat();
}

class Apple interface Fruit{
    public void eat(){
        System.out.println("**吃苹果");
    }
};

class Orange interface Fruit{
    public void eat(){
        System.out.println("**吃桔子");
    }
};

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

public class Factory{
    public static void main(String args[]){
        Fruit f = null;
        f= Factory.getInstance(args[0]);
        if(f!=null){
            f.eat();
        }
    }
}

 

工厂设计模式

标签:

原文地址:http://www.cnblogs.com/james-roger/p/4985982.html

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