Random类
1. Random类介绍
Random类 : 用来生成随机数字
Random类使用方法:
- 导包
1 | import java.util.Random; |
- 创建
1 | Random r = new Random(); |
- 使用
1 | int num = r.nextInt(); // 获取一个随机的int数字,创建数字的范围是Integer.MIN_VALUE到Integer.MAX_VALUE; |
如果nextInt()
方法中传入参数,则会在指定范围内生成随机数(一定是整数)
1 | // 会在 [0,10)之间生成随机数 |
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.