作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在学习 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/
我是一名优秀的程序员,十分优秀!