StrategyFactory.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:0k
源码类别:

软件工程

开发平台:

Java

  1. package com.company;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  * 策略工厂
  6.  */
  7. public class StrategyFactory {
  8. //策略工厂
  9. public static IDeduction getDeduction(StrategyMan strategy){
  10. IDeduction deduction = null;
  11. try {
  12. deduction = (IDeduction)Class.forName(strategy.getValue()).newInstance();
  13. }  catch (Exception e) {
  14. // 异常处理
  15. e.printStackTrace();
  16. }
  17. return deduction;
  18. }
  19. }