1、使用随机数,范围真的要取得大一点,否则真的会有重复的出现
int asInt = ThreadLocalRandom.current().ints(Integer.MIN_VALUE,0).findAny().getAsInt();
2、长度允许的情况下,用时间戳当随机数会更好一点 至少不会重复
System.currentTimeMillis();
1、使用随机数,范围真的要取得大一点,否则真的会有重复的出现
int asInt = ThreadLocalRandom.current().ints(Integer.MIN_VALUE,0).findAny().getAsInt();
2、长度允许的情况下,用时间戳当随机数会更好一点 至少不会重复
System.currentTimeMillis();