java + function总结,不断搜集中。。。

一、获取某个区间的随机值

    public static float rnd(float min, float max) {
         float fRandNum = (float)Math.random(); //返回一个0~1的随机值
            return min + (max - min) * fRandNum;
    }

二、

posted @ 2014-11-24 12:06  zyliang  阅读(128)  评论(0编辑  收藏  举报