码迷,mamicode.com
首页 > 其他好文 > 详细

Random随机数

时间:2014-07-01 00:18:27      阅读:302      评论:0      收藏:0      [点我收藏+]

标签:style   使用   width   new   table   size   

Random类的常用方法

方法

备注

Int nextInt()

返回一个int类型的随机数

Int nextInt(n)

返回一个0n之间的数,不包括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)的随机数
 }

Random随机数,布布扣,bubuko.com

Random随机数

标签:style   使用   width   new   table   size   

原文地址:http://www.cnblogs.com/danmao/p/3815876.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!