随机工具类
nextBoolean() 返回一个随机boolean值
nextBytes(int count) 返回一个指定大小的随机byte数组
nextDouble() 返回一个随机double值
nextDouble(double startInclusive, double endInclusive) 返回一个指定范围的随机double值
nextFloat() 返回一个随机float值
nextFloat(float startInclusive, float endInclusive) 返回一个指定范围的随机float值
nextInt() 返回一个随机int值
nextInt(int startInclusive, int endExclusive) 返回一个指定范围的随机int值
nextLong() 返回一个随机long值
nextLong(long startInclusive, long endExclusive) 返回一个指定范围的随机long值