随机数

作者: muyang_js的简书 | 来源:发表于2017-04-10 11:52 被阅读24次

    Objective-C版

    Objective-C版中有个arc4random()函数用来生成随机数且不需要种子,但是这个函数生成的随机数范围比较大,需要用取模的算法对随机值进行限制,有点麻烦。
    其实Objective-C有个更方便的随机数函数arc4random_uniform(x),可以用来产生0~(x-1)范围内的随机数,不需要再进行取模运算。如果要生成1~x的随机数,

    可以这么写:arc4random_uniform(x)+1。
    

    Swift版

    1,下面是使用arc4random函数求一个1~100的随机数(包括1和100)

    var temp:Int = Int(arc4random()%100)+1
    

    2,下面是使用arc4random_uniform函数求一个1~100的随机数(包括1和100)

    var temp:Int = Int(arc4random_uniform(100))+1
    

    //arc4random()函数是C语言提供的随机数函数,该函数的执行会返回一个任意大的数字,我们可以通过公式得到指定范围[a b]内的随机数。arc4r andom() % (b - a + 1) + a;

    简单使用

     funcButton.backgroundColor = [UIColor colorWithRed:arc4random()%256/255.0 green:arc4random()%256/255.0 blue:arc4random()%256/255.0 alpha:0.5];

    相关文章

      网友评论

          本文标题:随机数

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