gpt4 book ai didi

arrays - 从 Swift 中的函数返回一个数组

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

我无法从 Swift 中的函数调用返回数组。

脚本现在有点长,也有点复杂,但这基本上是函数内部输出的样子:

func getRecentUpdates()
{
var updates = [("test", "hello"),("nice", "one")]

println(updates)

return updates
}

println 在控制台中显示数组,但返回 ,错误提示 NSArray() is not convertible to ()

最佳答案

这应该有效:

func getRecentUpdates()->[(String,String)]
{
let updates = [("test", "hello"),("nice", "one")]

return updates
}

关于arrays - 从 Swift 中的函数返回一个数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32805921/

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