作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将功能性 kotlin 接口(interface)(与单个抽象方法的接口(interface))实现为 kotlin lambda。怎么做?
Kotlin 接口(interface)
@FunctionalInterface
interface Foo{
fun bar(input: String): String
}
fun createFoo(): Foo {
return { input: String -> "Hello $input!" }
}
fun createFoo() =
object : Foo{
override fun bar(input: String)= "Hello $input"
}
最佳答案
从 Kotlin v1.4 开始
SAM 转换将在 1.4 版中得到支持,并带有一种新的类型推断算法。
看:
invoke
函数采用 lambda。
interface Foo{
fun bar(input: String): String
companion object {
inline operator fun invoke(crossinline function: (String) -> String) =
object : Foo{
override fun bar(input: String) = function(input)
}
}
}
fun createFoo()= Foo { input: String -> "Hello $input!" }
(String)->String
.函数类型可以表示为 typealias 以使其看起来和感觉像一个接口(interface):
typealias Foo=(String)->String
.
关于kotlin - 如何在 Kotlin 中将功能接口(interface)实现为 lambda?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58713623/
我是一名优秀的程序员,十分优秀!