dartaotruntime
使用 Dart,您可以创建名为AOT 快照的预编译 Dart 应用程序。
创建 AOT 快照应用
#要生成 AOT 快照,请使用 dart compile
命令的 aot-snapshot
子命令。
运行 AOT 快照应用
#要运行 AOT 程序,请使用 dartaotruntime
命令。此工具支持 Windows、macOS 和 Linux。
查看示例
#这是一个创建和运行 AOT 快照的示例
$ dart compile aot-snapshot bin/myapp.dart
Generated: /Users/me/simpleapp/bin/myapp.aot
$ dartaotruntime bin/simpleapp.aot
了解更多选项
#要了解更多命令行选项,请使用 --help
标志
$ dartaotruntime --help
除非另有说明,否则本网站上的文档反映了 Dart 3.6.0。页面最后更新于 2024-02-07。 查看源代码 或 报告问题。