gpt4 book ai didi

xcode - 如何在 swift 中将闭包作为参数传递(只是基础知识)

转载 作者:行者123 更新时间:2023-11-30 10:18:42 25 4
gpt4 key购买 nike

所以,我昨天才开始学习 swift,所以请耐心等待。我正在研究关闭。我有一组非常简单的陈述。

<小时/>
    let myClosure = {
println("this is a simple test")
}

func showWork( closure : ()->() ) {
closure()
}

showWork(myClosure)
<小时/>

我知道我做错了什么,因为 println 在 xCode Playground 中不起作用。基本上,我创建了一个简单的闭包并将其传递给我的函数。但是, println 不打印。我做错了什么?

最佳答案

Void -> Void 代替 () -> ()。所以整个事情看起来像这样:

let myClosure = {
print("this is a simple test")
}

func showWork( closure : Void->Void ) {
closure()
}

showWork(myClosure)

关于xcode - 如何在 swift 中将闭包作为参数传递(只是基础知识),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28588644/

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