Scala 编译 OptionBuilder 时出错

发布于 2024-10-15 17:17:07 字数 429 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

习ぎ惯性依靠 2024-10-22 17:17:07
导入 org.apache.commons.cli.OptionBuilder
OptionBuilder.withLongOpt(“db-host”).hasArg。
withDescription("数据库主机名称").create('h')

我收到错误hasArg不是org.apache.commons.cli.OptionBuilder的成员。如果我将 .hasArg 更改为 .hasArg(),也没有什么区别。

为什么?

因为OptionBuilder没有实例方法hasArg,只有一个静态方法。由于 hasArg 是一个静态方法,因此您显然需要在类上调用它,而不是在类的实例上调用它。

顺便说一句,Java 解析得很好。

我不明白这与解析有什么关系。 Scala 也能很好地解析这个问题。另外,一些完全不同的编程对该代码执行或不执行的操作完全无关,因为这是 Scala 代码,而不是其他语言。

你需要做这样的事情:

import org.apache.commons.cli.OptionBuilder

OptionBuilder.withLongOpt("db-host")
OptionBuilder.hasArg
OptionBuilder.withDescription("Name of the database host")

val optionParser = OptionBuilder.create('h')
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?

Because there is no instance method hasArg in OptionBuilder, only a static method. Since hasArg is a static method, you obviously need to call it on the class, not on an instance of the class.

BTW, Java parses this fine.

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:

import org.apache.commons.cli.OptionBuilder

OptionBuilder.withLongOpt("db-host")
OptionBuilder.hasArg
OptionBuilder.withDescription("Name of the database host")

val optionParser = OptionBuilder.create('h')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文