gpt4 book ai didi

java - 相当于 System.exit(-1) 的 Kotlin Native

转载 作者:IT老高 更新时间:2023-10-28 13:46:49 26 4
gpt4 key购买 nike

在以下 Kotlin/JVM 程序中,System.exit(-1) 停止程序的执行并返回错误退出代码:

fun main(args: Array<String>) {
if (args.size < 2) {
println("too few args!")
System.exit(-1)
}
println("Hello, ${args[1]} from ${args[0]}")
}

Kotlin/Native 无法访问任何 Java 类,包括 System。那么 Kotlin/Native 程序停止执行带有错误代码的程序的等效函数是什么?

最佳答案

使用exitProcess:

import kotlin.system.exitProcess
...
exitProcess(exitCode)

Declaration and documentation在 Kotlin 源代码中。

关于java - 相当于 System.exit(-1) 的 Kotlin Native,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47604276/

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