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

工厂模式

时间:2017-03-15 22:50:05      阅读:310      评论:0      收藏:0      [点我收藏+]

标签:ges   log   nbsp   --   示例   else   blog   size   产品   

工厂模式属于创建型模式,由一个工厂对象决定创建出哪一种产品类的实例。

技术分享

 

角色:

IProduct: 产品共同的接口

Product1:具体的产品类

Creator:工厂类,可根据参数决定创建的产品类型

 

示例:

public interface IProduct {
    void myfunction();
}

 

---

class Product1 implements IProduct{
    public void myfunction(){
        System.out.println("function1");
    }
}

 

---

class Product2 implements IProduct {
    public void myfunction() {
        System.out.println("function2");
    }
}

 

---

public class Factory{
    public static IProduct product(int k){
        if (k == 1) {
            return new Product1();
        } else if (k == 2) {
            return new Product2();
        }
        return null;
    }
}

 

---

public class FactoryTest{
    public static void main(String[] args){
        IProduct product = Factory.product(2);
        if (product != null) {
            product.myfunction();
        }
    }
}

 

 

end

工厂模式

标签:ges   log   nbsp   --   示例   else   blog   size   产品   

原文地址:http://www.cnblogs.com/luangeng/p/6556997.html

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