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

软件工程

开发平台:

Java

  1. package com.company.factory;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class SuperManFactory {
  7. //定义一个生产超人的工厂
  8. public static ISuperMan createSuperMan(String type){
  9. //根据输入参数产生不同的超人
  10. if(type.equalsIgnoreCase("adult")){
  11. //生产成人超人
  12. return new AdultSuperMan();
  13. }else if(type.equalsIgnoreCase("child")){
  14. //
  15. return new ChildSuperMan();
  16. }else{
  17. return null;
  18. }
  19. }
  20. }