首页 > 其他 > 详细

工厂模式

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

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

技术分享

 

角色:

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

工厂模式

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!