产生某个区间的随机数

              
              //让手动Action休眠2-10分钟, 即2*60*1000到10*60*1000
int tmp = 2*60*1000 + new Random().nextInt((10-2)*60*1000);
//System.out.println(tmp);
try {
Thread.sleep(tmp);
} catch (InterruptedException e) {
log.error("ETManualAction 休眠时异常:" + e);
e.printStackTrace();
}

你可能感兴趣的:(随机数,职场,区间,休闲)