如何调用函数类型作为接收器对象

时间:2019-08-17 01:13:08

标签: kotlin

在下面的示例中,创建了一个函数类型“ repeateFunWithReceiver”,以便为接收器对象提供上下文。 在本教程中,有多种方法可以调用函数类型的值。

尝试使用以下代码中的代码,但是eclipse无法列出或识别功能类型。 请让我知道答案 乐”

代码

val repeatFunWithReceiver : String.(Int)-> String = {
    times : Int ->this.repeat(times)
}
println("repeatfun: " + repeatFunWithReceiver("B", 5))

"A".repeatFunWithReceiver(4)//<-repeateFunWithReceiver is not list among the method "in the auto comlete"

0 个答案:

没有答案