gpt4 book ai didi

Dart 错误 : type 'Options' is not loaded

转载 作者:行者123 更新时间:2023-12-01 10:01:26 25 4
gpt4 key购买 nike

我正在尝试开始使用 Dart,但不知道如何读取 shell 参数。据我从其他问题可以看出,这应该有效:

#!/usr/bin/env /path/to/dart/dart-sdk/bin/dart

main()
{
print(new Options().arguments);
}

但是我得到一个错误“type 'Options' is not loaded”:

Unhandled exception:
'file:///path/to/script.dart': Error: line 5 pos 13: type 'Options' is not loaded
print(new Options().arguments);
^
malformed type used.
#0 main (file:///path/to/script.dart:5:13)

我做错了什么?

我在 Mac OS X 10.8 上使用当前稳定版本的 dart(今天下载)。

最佳答案

选项已移至 dart:io。添加以下内容:

#!/usr/bin/env /path/to/dart/dart-sdk/bin/dart

import 'dart:io';

main()
{
print(new Options().arguments);
}

关于 Dart 错误 : type 'Options' is not loaded,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15560095/

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