第一种方法使用:System.currentTimeMillis(); final long l = System.currentTimeMillis(); final int rs = (int) (l % 100);//获取0到一百的整数 第二种方法使用:Math.random().这里默认的是double类型的数据.数据范围在[0,1) int rs = (int) (Math.random() * 10);//数据扩大10倍.范围在[1,10) 第三种方法使用: Random rando
Math.random():获取0~1随机数 Math.floor() method rounds a number DOWNWARDS to the nearest integer, and returns the result. (小于等于 x,且与 x 最接近的整数.)其实返回值就是该数的整数位:Math.floor(0.666) --> 0Math.floor(39.2783) --> 39 所以我们可以使用Math.floor(Math.random())去获取你想要的一