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

软件工程

开发平台:

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.  */
  8. public class Wizard {
  9. private Random rand = new Random(System.currentTimeMillis());
  10. //第一步
  11. public int first(){
  12. System.out.println("执行第一个方法...");
  13. return rand.nextInt(100);
  14. }
  15. //第二步
  16. public int second(){
  17. System.out.println("执行第二个方法...");
  18. return rand.nextInt(100);
  19. }
  20. //第三个方法
  21. public int third(){
  22. System.out.println("执行第三个方法...");
  23. return rand.nextInt(100);
  24. }
  25. }