最近在跟着斯坦福大学的ISO8开发学习下面的代码,编译出错funcperformOperation(operation:(Double,Double)->Double){ifoperandStack.count>=2{displayValue=operation(operandStack.removeLast(),operandStack.removeLast())enter()}}funcperformOperation(operation:Double->Double){ifoperandStack.count>=1{displayValue=operation(operandStack.removeLast())enter()}}出现下面的错误:Method'performOperation'withObjective-Cselector'performOperation:'conflictswithpreviousdeclarationwiththesameObjective-Cselector
2 回答
智慧大石
TA贡献1946条经验 获得超3个赞
如果你这个类没继承Objective-C的类,代码不会出错的,显然你这个类继承了一个Objective-C的类,Objective-C不支持方法重载,而这两个方法的selector是一样的,所以就错了。要么你给两个方法起不一样的名字,要么你想办法让这个类不要继承Objective-C的类,要不你把其中一个设成private,或者你还可以把其中的一个方法加一个Objective-C不支持的参数类型比如()=()之类的。总之就是不要让这两个方法同时和Objective-C打交道就没问题。话说新版的Swift应该能编译过去,但运行的时候会挂。
添加回答
举报
0/150
提交
取消