欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

iPhone/iPad 开发: 如何生成随机数 Objective-CCC++C# 

程序员文章站 2022-03-11 20:12:35
...
有时我们在程序开发工程中需要在生成随机数, 可是Objective-C并没有提供相关函数,
还好C提供了rand(), srand(), random(), srandom(), arc4random()几个函数
例子:
// Get random number between 0 and 99
int x = arc4random() % 100;

// Get random number between 500 and 999
int y =  (arc4random() % 501) + 500);