美文网首页
Android生成随机数

Android生成随机数

作者: dong_hui | 来源:发表于2018-08-03 14:57 被阅读23次

    方式1

    • (数据类型)(最小值+Math.random()*(最大值-最小值+1))
      例子:从1到10的int型随数 【1,10】
    (int)(1+Math.random()*(10-1+1))
    

    方式2

    • 从1到10的int型随数
    Random ra =new Random();
    ra.nextInt(10)+1);
    

    相关文章

      网友评论

          本文标题:Android生成随机数

          本文链接:https://www.haomeiwen.com/subject/xynyvftx.html