gpt4 book ai didi

gradle - Gradle Kotlin DSL中的closureOf和delegateClosureOf有什么区别

转载 作者:行者123 更新时间:2023-12-04 21:03:08 28 4
gpt4 key购买 nike

The official doc说:

You may sometimes have to call Groovy methods that take Closure arguments from Kotlin code. For example, some third-party plugins written in Groovy expect closure arguments.

In order to provide a way to construct closures while preserving Kotlin’s strong typing, two helper methods exist:

  • closureOf<T> {}
  • delegateClosureOf<T> {}

Both methods are useful in different circumstances and depend upon the method you are passing the Closure instance into. Some plugins expect simple closures. In other cases, the plugin expects a delegate closure. There sometimes isn’t a good way to tell, from looking at the source code, which version to use. Usually, if you get a NullPointerException with closureOf<T> {}, using delegateClosureOf<T> {} will resolve the problem.



好吧,我没有反对尝试失败修复方法,但也许有一种确定性的方法可以提前告诉使用哪种方法以及为什么?

最佳答案

but maybe there is a deterministic way to tell in advance which method to use



只需检查您正在配置的插件的源代码即可。例如,他们的 Bintray 插件示例是:
bintray {
pkg(closureOf<PackageConfig> {
// Config for the package here
})
}

如果您要检查源代码,您会发现: https://github.com/bintray/gradle-bintray-plugin/blob/master/src/main/groovy/com/jfrog/bintray/gradle/BintrayExtension.groovy#L35..L37
def pkg(Closure closure) {
ConfigureUtil.configure(closure, pkg)
}

这是一个简单的 Closure所以 closureOf<T> {}根据文档,这里是合适的。

现在他们的另一个例子是配置农场时的 Gretty 插件:
farms {
farm("OldCoreWar", delegateClosureOf<FarmExtension> {
// Config for the war here
})
}

如果您检查源代码,您会发现: https://github.com/akhikhl/gretty/blob/master/libs/gretty-core/src/main/groovy/org/akhikhl/gretty/FarmsConfig.groovy#L23..L32
  void farm(String name = null, Closure closure) {
if(name == null)
name = ''
def f = farmsMap_[name]
if(f == null)
f = farmsMap_[name] = createFarm()
closure.delegate = f
closure.resolveStrategy = Closure.DELEGATE_FIRST
closure()
}

根据文档,这比前面的示例复杂得多,因为这显然需要委托(delegate)关闭,然后 delegateClosureOf<T> {}将是合适的选择。

关于gradle - Gradle Kotlin DSL中的closureOf和delegateClosureOf有什么区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53653499/

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