Scala 编译 OptionBuilder 时出错
我正在使用 Apache commons cli (1.2) 进行命令行解析。
我的代码中有以下内容:
import org.apache.commons.cli.OptionBuilder
OptionBuilder.withLongOpt("db-host").hasArg.
withDescription("Name of the database host").create('h')
我收到错误 hasArg is not a member of org.apache.commons.cli.OptionBuilder
。如果我将 .hasArg
更改为 .hasArg()
也没有什么区别。
为什么?
顺便说一句,Java 解析得很好。
I am using Apache commons cli (1.2) for command line parsing.
I have the following in my code:
import org.apache.commons.cli.OptionBuilder
OptionBuilder.withLongOpt("db-host").hasArg.
withDescription("Name of the database host").create('h')
I get the error hasArg is not a member of org.apache.commons.cli.OptionBuilder
. It makes no difference if I change .hasArg
to .hasArg()
.
Why?
BTW, Java parses this fine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为
OptionBuilder
中没有实例方法hasArg
,只有一个静态方法。由于hasArg
是一个静态方法,因此您显然需要在类上调用它,而不是在类的实例上调用它。我不明白这与解析有什么关系。 Scala 也能很好地解析这个问题。另外,一些完全不同的编程对该代码执行或不执行的操作完全无关,因为这是 Scala 代码,而不是其他语言。
你需要做这样的事情:
Because there is no instance method
hasArg
inOptionBuilder
, only a static method. SincehasArg
is a static method, you obviously need to call it on the class, not on an instance of the class.I don't understand what this has to do with parsing. Scala parses this just fine, too. Plus, what some completely different programming does or doesn't do with this code is utterly irrelevant, since this is Scala code, not some other language.
You need to do something like this: