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

软件工程

开发平台:

Java

  1. package com.company.section3;
  2. import java.util.Random;
  3. /**
  4.  * @author cbf4Life cbf4life@126.com
  5.  * I'm glad to share my knowledge with you all.
  6.  */
  7. public class ObjectStruture {
  8. //对象生成器,这里通过一个工厂方法模式模拟
  9. public static Element createElement(){
  10. Random rand = new Random();
  11. if(rand.nextInt(100) > 50){
  12. return new ConcreteElement1();
  13. }else{
  14. return new ConcreteElement2();
  15. }
  16. }
  17. }