static
void
main(String[] args) {
long
t = System.currentTimeMillis();
//获得当前时间的毫秒数
Random rd =
new
Random(t);
//作为种子数传入到Random的构造器中
System.out.println(rd.nextInt());
//生成随即整数
}
}
|
获得以当前时间为种子的随机数
最新推荐文章于 2024-01-24 15:15:00 发布