如何在Ceylon中获取命令行参数?

时间:2015-03-01 00:10:34

标签: ceylon

在命令行Java应用程序中,您可以通过args参数获取参数:

public static void main(String[] args) {

我怎样才能在锡兰做类似的事情?我尝试复制Java风格:

shared void run(String[] args) {

但由于不允许这样做而出现错误:

ceylon run: Cannot run toplevel method 'test.project.run': 
it should have no parameters or they should all have default values.

我一直在阅读ceylon-lang.org之旅,但我还没有找到答案。

1 个答案:

答案 0 :(得分:9)

使用语言模块中的顶级process对象。

String[] arguments = process.arguments;
String? argument = process.namedArgumentValue("name");
if (process.namedArgumentPresent("name")) {
    // ...
}