java--随机数的产生
随机数产生的三种方法:
1、system.currentTimeMillis()
public class Demo1{ public static void main(String[] args) { System.out.println(System.currentTimeMillis()); } }
显示的时间是从1970年1月1日开始到目前的时间的毫秒数;
2、math.random()
将会产生0.0--1.0之间的随机数
API : java.lang.Math
3、Random()
public class Demo1{ public static void main(String[] args) { double r1 = Math.random(); System.out.println(r1); Random r2 = new Random(System.currentTimeMillis()); Random r3 = new Random(System.currentTimeMillis()); int res1 = r2.nextInt(10); int res = r2.nextInt(10); System.out.println(res); System.out.println(res1); } }
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步