Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在部署到 IBM Bluemix 上的 OpenWhisk 的函数中在 Swift 中生成一个随机数。
因为它是 Linux 运行时,所以我不能使用arc4random_uniform(). 我也不想使用drand48(),因为它没有给我一个真正的随机数(伪随机序列)。
arc4random_uniform()
drand48()
不过,到目前为止,我已经尝试过......
let answer = drand48() * 10000
...产生 3.90798504668055e-10
有任何想法吗?