摘要: /** * 指定范围的随机数 */ public static int getRandom(int min, int max) { Random random = new Random(); return random.nextInt(max) % (max - min + 1) + min; } 阅读全文
posted @ 2018-10-02 21:02 H_bolin 阅读(195) 评论(0) 推荐(0) 编辑