在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
arc4random()这个全局函数会生成9位数的随机整数 1,下面是使用arc4random函数求一个1~100的随机数(包括1和100) let temp:Int = Int(arc4random()%100)+1 print(temp) 2,下面是使用arc4random_uniform函数求一个1~100的随机数(包括1和100) let temps:Int = Int(arc4random_uniform(100))+1 print(temps) arc4random_uniform会随机返回一个0到上界之间(不含上界)的整数。以2为上界会得到0或1,像投硬币一样
|
请发表评论