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.5.3。 页面最后更新于 2024-02-07。 查看源代码 或 报告问题.