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

Chapter 8 工厂方法模式

时间:2014-05-18 19:15:50      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:class   c   ext   int   a   string   

工厂方法模式实现时,客户端需要决定实例化哪一个工厂来实现运算类,选择判断的问题还是存在的,也就是说,工厂方法把简单工厂的内部逻辑判断移到了客户端代码来进行。你想要加功能,本来是改工厂类的,而现在是修改客户端。

代码如下:

package xiao;

class LeiFeng{
public void sweep(){
System.out.println("sweep!");
}
public void wash(){
System.out.println("wash!");
}
public void buyRice(){
System.out.println("buyRice!");
}
}
class Undergraduate extends LeiFeng{

}
interface IFactory{
public LeiFeng createLF();
}
class UndergraduateFactory implements IFactory{
public LeiFeng createLF(){
return new Undergraduate();
}
}
class Volunteer extends LeiFeng{

}
class VolunteerFactory implements IFactory{
public LeiFeng createLF(){
return new Volunteer();
}
}
public class Hello {

public static void main(String[] args) throws Exception{
IFactory factory = new UndergraduateFactory();
LeiFeng student = factory.createLF();
student.buyRice();
student.sweep();
student.wash();
}
}

工厂方法克服了简单工厂违背开放-封闭原则的缺点,又保持了封装对象创建过程的优点。

Chapter 8 工厂方法模式,布布扣,bubuko.com

Chapter 8 工厂方法模式

标签:class   c   ext   int   a   string   

原文地址:http://www.cnblogs.com/tuifeideyouran/p/3733561.html

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