gpt4 book ai didi

swift - 创建一个带有不允许转义函数的参数的 Swift 函数?

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

我有一个函数,只能在另一个函数的上下文中调用,因此我希望 swift 阻止消费者捕获内部函数:

protocol Foo {
func bar(onlyValidToCallInsideBar: () -> Void)
}

class GoodFooImpl {
func bar(onlyValidToCallInsideBar: () -> Void) {
// do some stuff
onlyValidToCallInsideBar()
// do some more stuff
}
}

class CapturingBadFooImpl {
var badCaptureOfOnlyValidToCallInsideBar: (() -> Void)?
func bar(onlyValidToCallInsideBar: () -> Void) {
badCaptureOfOnlyValidToCallInsideBar = onlyValidToCallInsideBar
}

func fizz() {
badCaptureOfOnlyValidToCallInsideBar!()
}
}

class AsyncBadFooImpl {
func bar(onlyValidToCallInsideBar: () -> Void) {
dispatch_async(dispatch_get_main_queue()) {
onlyValidToCallInsideBar()
}
}
}

class FooConsumer {
func buzz(foo: Foo) {
bar() {
// This should only be called inside bar
}
}
}

我想阻止像 CapturingBadFooImplAsyncBadFooImpl 这样的 impl。

最佳答案

Swift 具有嵌套函数。听起来你想让你的函数嵌套在另一个函数中。或者,如果您正在创建一个框架,则可以将您的函数设为私有(private)。这可以防止它在其模块(框架)之外使用。

如果您的意思不是其中之一,则必须更清楚地解释您想要什么。

关于swift - 创建一个带有不允许转义函数的参数的 Swift 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30267382/

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