gpt4 book ai didi

android - 解释这个Kotlin函数结构

转载 作者:太空狗 更新时间:2023-10-29 16:12:07 24 4
gpt4 key购买 nike

我正在使用这个 Kotlin 函数。我知道我们有一个名为 mPasswordView!!.setOnEditorActionListener 的函数,它采用参数 TextView.OnEditorActionListener,但它后面是什么?我们在参数里面有大括号?

mPasswordView!!.setOnEditorActionListener(TextView.OnEditorActionListener { textView, id, keyEvent ->
if (id == R.id.login || id == EditorInfo.IME_NULL) {
attemptLogin()
return@OnEditorActionListener true
}
false
})

最佳答案

您示例中使用的特征是 SAM constructor . setOnEditorActionListener 监听器将 OnEditorActionListener 作为其参数。此接口(interface)只有一个您必须实现的方法,这使它成为一个单一抽象方法 (SAM) 接口(interface)。

在 Java 中使用此方法的完整语法为:

mPasswordView.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
attemptLogin();
return true;
}
});

到 Kotlin 的一对一转换会给你:

mPasswordView.setOnEditorActionListener(object: TextView.OnEditorActionListener{
override fun onEditorAction(v: TextView?, actionId: Int, event: KeyEvent?): Boolean {
attemptLogin()
return true
}
})

但是,Kotlin 允许您通过传入 lambda 来使用采用 SAM 接口(interface)作为参数的方法,语法更简洁。这称为 SAM 转换:

mPasswordView.setOnEditorActionListener { v, actionId, event ->
attemptLogin()
true
}

SAM 转换自动确定此 lambda 对应于哪个接口(interface),但您可以使用称为 SAM 构造函数的东西明确指定它,这就是您的示例代码中的内容。 SAM 构造函数返回一个实现给定接口(interface)的对象,并使您传递给它的 lambda 成为其单一方法的实现。

mPasswordView.setOnEditorActionListener( TextView.OnEditorActionListener { v, actionId, event ->
attemptLogin()
true
})

在这种特定情况下这是多余的,因为只有一个方法叫做 setOnEditorActionListener。但是,如果有多个方法具有相同的名称,将不同的接口(interface)作为参数,您可以使用 SAM 构造函数来指定要调用的方法的重载。

Official docs about SAM conversions

关于android - 解释这个Kotlin函数结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43574172/

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