gpt4 book ai didi

具有关联值的 Swift 枚举,在调用中得到 "missing argument label ' 数组”

转载 作者:搜寻专家 更新时间:2023-11-01 06:09:02 24 4
gpt4 key购买 nike

我正在学习 Swift。下面是我的代码:

enum MyTest
{
case Point(Int, Int)
case What(String)
case GiveMeFunc((array: Int...) -> Int)
}

var p1 = MyTest.Point(2, 2)
var p2 = MyTest.Point(3, 3)

var s1 = MyTest.What("Haha...")
var s2 = MyTest.What("Heihei...")

var f1 = MyTest.GiveMeFunc({(array: Int...) -> Int in return 8})
var f2 = MyTest.GiveMeFunc({(array: Int...) -> Int in return 9})

switch p1 {
case .What(let string):
println(string)
case .GiveMeFunc(let f):
println(f(1, 2, 4, 3))
case .Point(let a, let b):
println("a: \(a) b: \(b)")
}

当我运行它时,我得到了

missing argument label 'array' in call. 

错误来自:

println(f(1, 2, 4, 3))` 

如何修复错误?

最佳答案

通过插入数组:标签:

case .GiveMeFunc(let f):
println(f(array: 1, 2, 4, 3))

因为函数的定义需要它:

case GiveMeFunc((array: Int...) -> Int)

或者,如果您将 GiveMeFunc 重新定义为没有命名参数,则您不必提供它:

case GiveMeFunc((Int...) -> Int)

关于具有关联值的 Swift 枚举,在调用中得到 "missing argument label ' 数组”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29475501/

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