为什么只有第一个构造函数出现在javadoc中?
代码摘录:
/**
* Returns a <code>Config</code> object resulting from parsing a
* configuration file.
*
* @param p a <code>Path</code> object representing the configuration file.
*/
public Config(Path p) {
...code elided here...
}
/**
* Returns a <code>Config</code> object resulting from parsing a
* configuration file.
*
* @param filename a <code>String</code> naming the configuration file.
*/
public Config(String filename) {
this(Paths.get(filename));
}
Javadoc摘录:
(同样只有一个显示在“构造函数详细信息”中)
后代的详细信息:OS X 10.8.5,Eclipse EE Juno SR2,Java 1.7.0_72(但看到接受的答案)
答案 0 :(得分:1)
我可以直接使用javadoc
命令行工具重现 1.6.0_21 的问题。可以理解的是,它抱怨package java.nio.file does not exist
但仍设法创建文件(只有一个构造函数)。
看起来您正在使用1.6(或更早版本)javadoc
工具为1.7多个来源生成文档(这也可以解释为什么您的屏幕截图看起来有点......'老')