Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在服务器端 VM 应用程序中,有一些 Futures 可能会或可能不会返回。如何无条件退出应用程序?
退出虚拟机:
import 'dart:io'; main() { exit(0); // or non-zero for some error code }
这是记录在这里。谢谢提问!