首页 > 代码库 > Random随机数
Random随机数
Random类的常用方法
方法 | 备注 |
Int nextInt() | 返回一个int类型的随机数 |
Int nextInt(n) | 返回一个0到n之间的数,不包括n |
Double nextDouble() | 返回一个0-1之间的数 |
Float nextFloat() | 返回一个0-1之间的数 |
Long nextLong() | 返回一个长整形 |
/*************Random的使用******************/
public static void main(String[] args) {
//种子固定生成的随机数也就固定了
Random random = new Random(500);
System.out.println(random.nextInt());
//种子不固定
Random rand = new Random();
System.out.println(rand.nextInt());//产生int随机数
System.out.println(rand.nextInt(20));//产生0~20(不包含20)的随机数
}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。