1、通过System.currentTimeMillis()来获取一个当前时间毫秒数的long型数字。
1
2
|
long a = System.currentTimeMillis();
System.out.println(a);
|
2、通过Math.random()返回一个0到1之间的double值。
1
2
|
int b = ( int )(Math.random()* 99 + 1 );
System.out.println(b);
|
3、通过Random类来产生一个随机数。
1
2
3
|
Random random = new Random();
int c = random.nextInt( 100 )+ 1 ;
System.out.println(c);
|
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持服务器之家!
原文链接:http://www.cnblogs.com/lkj2017/p/6794756.html