gpt4 book ai didi

java - 从 Java 调用 Kotlin 高阶函数

转载 作者:IT老高 更新时间:2023-10-28 13:44:55 30 4
gpt4 key购买 nike

我有一个 Kotlin 辅助类定义为:

class CountdownTimer(endDateInSeconds: Long, callback: (timeRemaining: RemainingTime) -> Unit)

顾名思义,它需要一个纪元时间和一个回调,以固定的时间间隔(在本例中为秒)调用,直到到达结束日期。 RemainingTime 是一个数据类,包含到结束日期为止的时间量(秒、分钟、小时等)。

我可以干净地使用 Kotlin 中的这个类:

        countdownTimer = CountdownTimer(endDate, { timeRemaining ->
var timeString = // format time remaining into a string
view?.updateCountdownTimer(timeString)
})

但是,当我从 Java 调用它时,我不得不在回调中提供不必要的返回值,即使匿名函数指定了 Unit 返回类型(理论上它等效于 Java void 返回类型):

        this.countdownTimer = new CountdownTimer(this.endDate, remainingTime -> {
var timeString = // format time remaining into a string
if (view != null) {
view.updateCountdownTimer(timeString);
}
return null;
});

虽然从技术上讲不是问题,但必须从 Java 回调中提供无意义的返回值似乎.. 错误。有没有更好的方法在 Kotlin 中表达这个回调?

最佳答案

Unit 是一个object,并不直接等同于void。在后台,即使是 kotlin 代码也会在回调结束时包含 return Unit.INSTANCE;。除了定义一个总是返回 void 的单独接口(interface)之外,没有其他办法。

关于java - 从 Java 调用 Kotlin 高阶函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46082806/

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