java随机⽣成4位随机数java 随机⽣成4位的随机数测试类
@org.junit.Test
public void testRandom(){
String msg="您的注册码为%s,谢谢注册!";
System.out.println("Math.random得到⼩数");
System.out.und(Math.random() * 10000));
System.out.println("Random");
System.out.println(new Random().nextInt(9999));
System.out.println("字符串前⾯补0的话就这样String.format");
System.out.println(String.format("%04d",new Random().nextInt(9999)));
java生成随机数的方法}
输出结果:
Math.random得到⼩数
6644
Random
5413
字符串前⾯补0的话就这样String.format
2714
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论