随机数的三种生成方式

       // 第一种生成验证码的方式
String string = "";
for (int i = 0; i < 4; i++) {
string += (int) (Math.random() * 10);
}


// 第二种生成方式
String substring = UUID.randomUUID().toString().replace("-", "")
.toUpperCase().substring(0, 4);


// 第三种方式
Random random = new Random();
int nextInt = random.nextInt();
String str = String.valueOf(nextInt).replace("-", "").substring(0,4);
);

你可能感兴趣的:(随机数)