我正在使用 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 解析得很好。