gpt4 book ai didi

java - 只有第一个构造函数出现在 javadoc 中(从 eclipse 运行)?

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:54:15 26 4
gpt4 key购买 nike

为什么只有第一个构造函数出现在 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 摘录:

There can be only one

(类似地,只有一个也出现在“构造函数详细信息”中)

后代的详细信息:OS X 10.8.5、Eclipse EE Juno SR2、Java 1.7.0_72(但请参阅已接受的答案)

最佳答案

我可以通过 1.6.0_21 重现该问题,直接使用 javadoc 命令行工具。可以理解的是,它提示 package java.nio.file does not exist 但仍然设法创建文件(只有一个构造函数)。

看起来您正在使用 1.6(或更早版本)javadoc 工具为 1.7+ 来源生成文档(这也可以解释为什么您的屏幕截图看起来有点……“旧”)

关于java - 只有第一个构造函数出现在 javadoc 中(从 eclipse 运行)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36434743/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com