exitCode 顶层属性
获取 Dart VM 的全局退出代码。
Dart VM 的退出代码是全局的,并且由任何 isolate 对 exitCode 的最后一个赋值确定,正常终止时的 Dart VM 退出代码。
有关如何为退出代码选择值的信息,请参阅exit。
实现
int get exitCode => _ProcessUtils._getExitCode();
设置 Dart VM 的全局退出代码。
Dart VM 的退出代码是全局的,并且由任何 isolate 对 exitCode 的最后一个赋值确定,正常终止时的 Dart VM 退出代码。
默认值是 0
。
有关如何为退出代码选择值的信息,请参阅exit。
实现
void set exitCode(int code) {
ArgumentError.checkNotNull(code, "code");
_ProcessUtils._setExitCode(code);
}