随机函数游乐场 swift
Random func playground swift
我在我的操场上。我试图使用 arc4random_uniform
func 但出现此错误:使用未解析的标识符 'arc4random_uniform'
我可以改用其他函数吗?
确保您至少导入了 import Foundation
。或特定平台 import UIKit
用于 iOS 或 import Cocoa
用于 OSX.
arc4random_uniform
仅适用于苹果平台(来自 UIKit)。
如果您的游乐场托管在 linux 上,它应该无法运行。
使用rand()
或Int/Double/Bool.Int.random()
我在我的操场上。我试图使用 arc4random_uniform
func 但出现此错误:使用未解析的标识符 'arc4random_uniform'
我可以改用其他函数吗?
确保您至少导入了 import Foundation
。或特定平台 import UIKit
用于 iOS 或 import Cocoa
用于 OSX.
arc4random_uniform
仅适用于苹果平台(来自 UIKit)。
如果您的游乐场托管在 linux 上,它应该无法运行。
使用rand()
或Int/Double/Bool.Int.random()