1、通过System.currentTimeMillis()来获取一个当前时间毫秒数的long型数字。
long a = System.currentTimeMillis(); System.out.println(a);
2、通过Math.random()返回一个0到1之间的double值。
int b = (int)(Math.random()*99+1); System.out.println(b);
3、通过Random类来产生一个随机数。
Random random = new Random(); int c = random.nextInt(100)+1; System.out.println(c);
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持VeVb武林网!
新闻热点
疑难解答
图片精选