参考链接:https://dart.dev/guides/language/language-tour#the-main-function
1.在idea中安装dart插件
2.配置dart的本地SDK
3.新建dart命令行工程
new project ->dart->command-line applaction
4.创建commandlineDemo.dart文件,添加如下内容
void main(List<String> arguments) {
print(arguments);
assert(arguments.length == 2);
assert(int.parse(arguments[0]) == 1);
assert(arguments[1] == 'test');
}
5.进入当前工程的目录,然后通过命令行运行dart文件dart commandlineDemo.dart 1 test
如果需要在idea中运行commandlineDemo.dart文件,在运行时需要添加参数
在文件中右键->Edit commandlineDemo.dart....
在program argument中添加 1 test后,点击保存
然后ctrl + R 运行