Swift错误:’缺少函数返回’?

前端之家收集整理的这篇文章主要介绍了Swift错误:’缺少函数返回’?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在创建一个tic tac toe游戏,我遇到了这个我并不理解的错误:“在预期返回的函数中缺少返回'(location:String,pattern:String)’”.
它正在应该返回“algorResults”的代码块上绘制错误,它应该给出在第一行初始化的位置和模式(两个字符串).
出了什么问题?请彻底解释一下建议,谢谢!
我的代码
//Function that implements part of AI that sees where a good place to play is:

func rowcheck(value:Int)->(location:String,pattern:String)? {
    var goodFinds = ["011","101","110"]
    var findFuncs = [checktop,checkbottom,checkmidAcross,checkleft,checkmidDown,checkright,checkLRdiag,checkRLdiag]
    for algor in findFuncs {
        var algorResults = algor(value)
        if find(goodFinds,algorResults.pattern) {
            return algorResults
        }
    }
}
如果满足find(goodFinds,algorResults.pattern),则代码仅返回值,否则返回值.

你可以做的是指定一个默认的返回值并执行类似这样的操作(仅限伪代码):

variable result = defaultvalue

if find(goodFinds,algorResults.pattern) {
        result = algorResults
    }

return result

我应该提一下,我不熟悉Swift,但是这个逻辑会确保你总是返回一些东西,这样你的方法就能完成契约.

原文链接:https://www.f2er.com/swift/319543.html

猜你在找的Swift相关文章