/**
* 生成[1, max]之间的随机数
*/
public static Integer getRandomNumber(Integer max) {
Random rd = new Random();
return rd.nextInt(max) + 1;
}
/**
* 生成[1, max]之间的随机数
*/
public static
/**
* 生成[1, max]之间的随机数
*/
public static Integer getRandomNumber(Integer max) {
Random rd = new Random();
return rd.nextInt(max) + 1;
}
/**
* 生成[1, max]之间的随机数
*/
public static