1. Random类
1 public class Random extends Object implements Serializable;
此类的实例用于生成伪随机数流。此类使用48位种子。
(1)Random类概述
• 此类用于产生随机数
• 如果用相同的种子创建两个Random实例,则对每个实例进行相同的方法调用序列,它们将生成并返回相同的数字序列。
(2)Random的构造方法
• public Random():没有给种子,用的就是默认种子,是当前时间的毫秒值
• public Random(long seed):给固定的种子seed
种子:一般计算机的随机数都是伪随机数,以一个真随机数(种子)作为初始条件,然后用一定的算法不停迭代产生随机数。
(3)Random成员方法
1 public int nextInt(): 返回是int范围内的随机数 2 public int nextInt(int n ): 返回的是[0,n)范围内的随机数
(4)代码示例:
1 package cn.itcast_01; 2 3 import java.util.Random; 4 5 /* 6 * Random:产生随机数的类 7 * 8 * 构造方法: 9 * public Random():没有给种子,用的是默认种子,是当前时间的毫秒值 10 * public Random(long seed):给出指定的种子 11 * 12 * 给定种子后,每次得到的随机数是相同的。 13 * 14 * 成员方法: 15 * public int nextInt():返回的是int范围内的随机数 16 * public int nextInt(int n):返回的是[0,n)范围的内随机数 17 */ 18 public class RandomDemo { 19 public static void main(String[] args) { 20 // 创建对象 21 // Random r = new Random(); 22 Random r = new Random(1111);// 给定种子,每次返回的随机数是一样的 23 24 for (int x = 0; x < 10; x++) { 25 // int num = r.nextInt(); 26 int num = r.nextInt(100) + 1; 27 System.out.println(num); 28 } 29 } 30 }
时间: 2024-10-08 10:55:00