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

设计模式-工厂方法模式

时间:2015-11-25 22:29:24      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

类图:

技术分享

1 public interface IFactory {
2     public Operation createOperation();
3 }
1 public class AddOperationFactory implements IFactory {
2 
3     @Override
4     public Operation createOperation() {
5         return new AddOperation();
6     }
7 }
 1 public class Client {
 2 
 3     public static void main(String[] args)
 4     {
 5         IFactory addFactory = new AddOperationFactory();
 6         Operation add = addFactory.createOperation();
 7         add.setNumberA(1);
 8         add.setNumberB(2);
 9         System.out.println(add.getResult());
10     }
11 }

 

图片引用自:《大话设计模式》-程杰

设计模式-工厂方法模式

标签:

原文地址:http://www.cnblogs.com/gatsbydhn/p/4995940.html

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