RandomUtils

public class RandomUtils {
    /*** 生成m到n的随机数(含m n) */
    public static int genRandomOfMN(int m, int n) {
        return m + (int) (Math.random() * (n + 1 - m));
    }

    public static void main(String[] args) {

    }
}

你可能感兴趣的:(工具类系列)