码迷,mamicode.com
首页 > 编程语言 > 详细

java工厂设计模式初步

时间:2017-08-09 22:11:23      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:tor   ring   factor   static   ace   public   int   设计   code   

没有利用反射机制定义的简单工厂类

interface Fruit{
    public void eat();
}
class Apple implements Fruit{
    public void eat(){
        System.out.println("吃苹果");
    }
}
class Orange implements Fruit{
    public void eat(){
        System.out.println("吃橘子");
    }
}
//下面定义一个工厂,取得子类的实例化对象;
class Factory{
    public static Fruit getInstance(String className){
        if("apple".equals(className)){
            return new Apple();
        }else if("orange".equals(className)){
            return new Orange();
        }else{
            return null;
        }
    }
}
public class Test{
    public static void main(String args[]){
        Fruit f = Factory.getInstance("apple");
        f.eat();
    }
}

 

java工厂设计模式初步

标签:tor   ring   factor   static   ace   public   int   设计   code   

原文地址:http://www.cnblogs.com/hu1056043921/p/7327737.html

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