- package test;
- import java.util.Random;
- /*
- * Random类
- * 此类用于产生随机数
- * 构造方法:
- * public Random():没有种子,用的是默认种子,是当前时间的毫秒值
- * pubilc Random(long seed):给出固定的种子
- * 给定种子后,每次得到的随机数是相同的
- *
- * 成员方法:
- * public int nextInt() 返回的是int范围内的随机数
- * public int nextInt(int n) 返回的是[0-n)范围内的随机数
- * */
- public class Test01 {
- public static void main(String[] args) {
- Random r=new Random(1111);
- for(int i=0;i<10;i++){
- int num=r.nextInt(100); //[0-100)
- int num2=r.nextInt(100)+1; //[1-100]
- //System.out.println(num);
- System.out.println(num2);
- }
- }
- }
复制代码 |
|