/*
* Random:产生随机数的类
*
* 构造方法:
* public Random():没有给种子,用的是默认种子,是当前时间的毫秒值
* public Random(long seed):给出指定的种子
*
* 给定种子后,每次得到的随机数是相同的。
*
* 成员方法:
* public int nextInt():返回的是int范围内的随机数
* public int nextInt(int n):返回的是[0,n)范围的内随机数
*/
public class RandomDemo {
public static void main(String[] args) {
// 创建对象
// Random r = new Random();
Random r = new Random(1111); for (int x = 0; x < 10; x++) {
// int num = r.nextInt();
int num = r.nextInt(100) + 1;
System.out.println(num);
}
}
}
相关文章
- 03-14CMakeFiles/Makefile2:838: recipe for target ‘grid_path_searcher/CMakeFiles/random_complex.dir/all‘ f
- 03-14Copy List with Random Pointer(复杂链表复制)
- 03-149.28 包/time/datetime/random/hashlib/hmac/typing/requests/re模块
- 03-1416.re模块,序列化与反序列化,time与datetime模块,random模块
- 03-1421航电5E - random walk2(高斯消元)
- 03-14ARC104E Random LIS
- 03-14python中random模块
- 03-14random模块
- 03-14Random
- 03-14Python 常用模块系列学习(1)--random模块常用function总结--简单应用--验证码生成