在Kotlin中具有属性的函数类型

时间:2018-01-08 02:22:00

标签: javascript typescript kotlin

我可以在TypeScript中指定它(因此可以在JavaScript中完成):

interface Foo {
  (arg: any): void
  foo: string
}

在Kotlin可以实现同样的目标吗?

1 个答案:

答案 0 :(得分:2)

这也可以用Kotlin表达:

interface Foo {
  fun funX(arg: Any): Unit
  val foo: String
}

Properties in Interfaces