gpt4 book ai didi

kotlin - Kotlin接收器功能用于DSL所需的说明

转载 作者:行者123 更新时间:2023-12-02 13:07:42 25 4
gpt4 key购买 nike

我正在尝试理解以下代码(source)。

class HTML {
fun body() { ... }
}

fun html(init: HTML.() -> Unit): HTML {
val html = HTML() // create the receiver object
html.init() // pass the receiver object to the lambda
return html
}

html { // lambda with receiver begins here
body() // calling a method on the receiver object
}

我真正无法掌握的是线
html.init() // pass the receiver object to the lambda

这是怎么回事

有人可以简单地解释一下这里发生了什么吗?

最佳答案

首先,让我们简化该示例,然后看看问题出在哪里。

我们可以像这样构建html函数:

fun html(init: (HTML) -> Unit): HTML {
val html = HTML()
init(html)
return html
}

乍一看,这会更容易理解,因为我们只是将通常的单参数lambda传递给 html函数。

但是现在, call 站点不是像这样的构建器:
html { it: HTML -> // just for clarity     
it.body() // not very nice
}

如果我们可以在没有 body()的情况下调用 html中的 it会很好吗?有可能!我们需要的是带有接收器的lambda。
fun html(init: HTML.() -> Unit): HTML { // <-- only this changed
val html = HTML()
init(html)
return html
}

看看像以前一样如何将 html作为参数传递给 init吗?
当然,我们也可以像这样调用它: html.init()如示​​例所示。 HTML的实例在lambda块内变为 this

现在,我们可以这样做:
html {      
this.body()
}

由于可以省略 this,因此我们到达此处:
html {      
body()
}

因此,最终带有接收器的lambda使代码更简洁,并允许我们使用良好的构建器语法。

关于kotlin - Kotlin接收器功能用于DSL所需的说明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61184213/

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