gpt4 book ai didi

ios - 使用闭包作为参数而不使用尾随闭包 Swift

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:59:44 25 4
gpt4 key购买 nike

使用尾随闭包语法似乎很容易 pass a function as a parameter of another function .

但是我想在不使用尾随闭包语法的情况下执行此操作

func doSomethingTwo(closure: (String) -> Void) {
closure("AAA")
}

doSomethingTwo(closure: print("TEST") )

给予无法将类型“()”的值转换为预期的参数类型“(String) -> Void”

我知道

doSomethingTwo{ (test: String) in
print ("\(test)")
}

有效,但希望没有尾随闭包语法。

这不是作业问题,我正在查看教程并进行了研究,但没有给我这个问题的答案。

最佳答案

您需要定义自己的打印方法以将其作为参数传递:

func doSomethingTwo(closure: (String) -> ()) {
// when you call the closure you need to pass the string to be printed
closure("TEST")
}

定义打印将传递给闭包的字符串的方法:

let closure: (String) -> () = { print($0) }

然后你可以随意调用它:

doSomethingTwo(closure: closure)

关于ios - 使用闭包作为参数而不使用尾随闭包 Swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54740478/

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