java中Random类的详解
Random:产生随机数的类
构造方法:
- public Random():没有给种子,用的是默认种子,是当前时间的毫秒值
- public Random(long seed):给出指定的种子
- 给定种子后,每次得到的随机数是相同的。
成员方法:
- public int nextInt():返回的是int范围内的随机数
- public int nextInt(int n):返回的是[0,n)范围的内随机数
class test{
public static void main(String[] args){
//创建对象
Random r = new Random();
//测试public int nextInt();
for(int i = 0 ; i <= 10 ; i++){
int nun = r.nextInt();
}
//输出结果为:
//635949163
//34669087
//-1846857952
//851495967
//654129567
//-227395044
//-1608876680
//1726408963
//-1517057225
//1526309759
//-1185048128
//测试public int nextInt(int n);
for(int i = 0 ; i <= 10 ; i++){
int nun = r.nextInt(100);
System.out.println(num);
//输出结果为:55 13 38 65 20 47 54 55 2 12 71
}
}
}
import java.util.Random;
class test{
public static void main(String[] args){
//创建对象
Random r = new Random(111);
for(int i = 0 ; i <= 5 ; i++){
int num = r.nextInt(100);
System.out.print(num+" ");
//输出结果:无论运行多少次输出结果都是93 70 57 97 9 20 ,不会改变
}
}
}