黑马程序员技术交流社区

标题: 【记录】代码练习-Random类 [打印本页]

作者: Kevin.Kang    时间: 2015-7-8 14:18
标题: 【记录】代码练习-Random类
  1. package com.kxg_03;

  2. import java.util.Random;

  3. public class RandomDemo {
  4. public static void main(String[] args) {
  5. // Random类:产生随机数
  6. // 构造方法:
  7. // public Random():没有种子,用默认种子,是当前时间毫秒值
  8. // public Random(long seed):指定种子
  9. Random random = new Random();
  10. Random random2 = new Random(482640);
  11. // 成员方法:
  12. // public int nextInt():返回int范围内的随机数
  13. // public int nextInt(int n):返回[0,n)之间的随机数
  14. int i = random.nextInt();
  15. int j = random.nextInt(100);
  16. int k = random2.nextInt();
  17. int l = random2.nextInt(100);
  18. System.out.println(i);
  19. System.out.println(j);
  20. System.out.println(k);//指定种子的随机数,每次都相同
  21. System.out.println(l);
  22. }
  23. }
复制代码


作者: GiveUp    时间: 2015-7-8 21:33
赞一个,
作者: cloud1991    时间: 2015-9-16 09:59
群主总结的好详细
作者: sxwnzbn    时间: 2015-9-16 10:08
前几天刚练过




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2