未实现代码的 Kotlin stub/placeholder 函数

Kotlin stub/placeholder function for unimplemented code

Scala 的 Predef 有一堆 shorthand 函数,包括一个用于未实现代码的函数,即 ???。 Kotlin 有没有类似的东西而不必求助于手写

throw Error("Code not yet implemented")

自 Kotlin 1.0 起,您可以使用 Kotlin 标准库中的 TODO function,它接受可选消息。