gpt4 book ai didi

ios - 制作四个独立的变量

转载 作者:可可西里 更新时间:2023-10-31 23:56:33 25 4
gpt4 key购买 nike

我正在尝试制作四个完全不同的独立变量,以便 a 和 b 不同,a 和 c 不同,b 和 c 不同等等。这是四个变量。

var a = Int(arc4random_uniform(5))
var b = Int(arc4random_uniform(5))
var c = Int(arc4random_uniform(5))
var d = Int(arc4random_uniform(5))

最佳答案

即使问题已经得到解答,这里还有一个替代解决方案:

var set = Set<UInt32>()

while set.count < 4 {
set.insert(arc4random_uniform(5))
}

关于ios - 制作四个独立的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31353355/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com