Swift 1.2不使用相同的函数名和不同的参数

前端之家收集整理的这篇文章主要介绍了Swift 1.2不使用相同的函数名和不同的参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Compiler error: Method with Objective-C selector conflicts with previous declaration with the same Objective-C selector6个
我有2个具有相同名称但不同参数的函数.

第一个接受一个接受2个双精度并返回1的函数作为参数.

第二个接受一个接受1 double并返回1的函数作为参数.这适用于在Xcode 6.1.1上测试的Swift 1.1,但是在Swift 1.2中,在Xcode 6.4(beta)上测试过,这不起作用并且给我这个错误

Method ‘performOperation’ with Objective-C selector ‘performOperation:’
conflicts with prevIoUs declaration with the same Objective-C selector

我能做些什么才能发挥作用,为什么会这样呢?
我知道我可以用另一种方式做平方根然后就在这里,但我想知道问题是什么.

编辑

@IBAction func operate(sender: UIButton) {
        let operation = sender.currentTitle!
        if userIsInMiddleOfTypingANumber{
            enter()
        }
        switch operation{
        case "×" : performOperation {$0 * $1}
        case "÷" : performOperation {$1 / $0}
        case "+" : performOperation {$0 + $1}
        case "−" : performOperation {$1 - $0}
        case "√" : performOperation {sqrt($0)}
        default : break
        }
    }

    func performOperation(operation : (Double,Double) -> Double){
        if operandStack.count >= 2{
            displayValue = operation(operandStack.removeLast(),operandStack.removeLast())
            enter()
        }
    }

    func performOperation(operation : Double -> Double) {
        if operandStack.count >= 1{
            displayValue = operation(operandStack.removeLast())
            enter()
        }
    }
你不能重载Objective-C可以看到的方法,因为Objective-C没有重载:
func performOperation(operation : (Double,Double) -> Double){
}
func performOperation(operation : Double -> Double) {
}

(Swift 1.2之前在Swift中允许的事实实际上是一个bug; Swift 1.2关闭了漏洞并修复了bug.)

简单的解决方案:从Objective-C中隐藏这些方法.例如,声明它们都是私有的.

更棘手的解决方案:更改Objective-C看到其中一个的名称.例如:

func performOperation(operation : (Double,Double) -> Double){
}
@objc(performOperation2:) func performOperation(operation : Double -> Double) {
}

或者,Swift 2.0中的新功能,您可以从Objective-C中隐藏其中一个或两个,而不会使其变为私有:

@nonobjc func performOperation(operation : (Double,Double) -> Double){
}
func performOperation(operation : Double -> Double) {
}
原文链接:https://www.f2er.com/swift/318728.html

猜你在找的Swift相关文章