故意花卷

文章
5
资源
1
加入时间
3年0月21天

Java生成随机数

1、使用Math方法int num = (int)(Math.random()*100);2、使用Random方法生成随机数Random random = new Random();//1024以内的随机数random.nextInt(1024);3、使用SecureRandom生成随机数SecureRandom secureRandom = SecureRandom.getInstance("SHA1PRNG");secureRandom.setSeed(10000L);