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

软件工程

开发平台:

Java

  1. package com.company.section4;
  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.  */
  8. public class Wizard {
  9. private Random rand = new Random(System.currentTimeMillis());
  10. //第一步
  11. private int first(){
  12. System.out.println("执行第一个方法...");
  13. return rand.nextInt(100);
  14. }
  15. //第二步
  16. private int second(){
  17. System.out.println("执行第二个方法...");
  18. return rand.nextInt(100);
  19. }
  20. //第三个方法
  21. private int third(){
  22. System.out.println("执行第三个方法...");
  23. return rand.nextInt(100);
  24. }
  25. //软件安装过程
  26. public void installWizard(){
  27. int first = this.first();  
  28. //根据first返回的结果,看是否需要执行second
  29. if(first>50){
  30. int second = this.second();
  31. if(second>50){
  32. int third = this.third();
  33. if(third >50){
  34. this.first();
  35. }
  36. }
  37. }
  38. }
  39. }