我正在尝试记录我的一个课程,但是我一直遇到相同的错误,而且我不明白为什么或如何解决它。

这是代码的相关部分:

/** Set the health.
    @param health The health of the enemy */
    public void setHealth(float health) {
        this.health = maximum_health;
    }

    /** initialising */
    public void initialise() {
        setName("NONE");
    }

    /** Constructor for the base enemy
    @param name The name of the enemy
    @param health The health of the enemy */
    public BaseEnemy(String name) {
        initialise();
        setName(name);
        setHealth(health);
        }


记录文档时出现以下错误:

Generating code/classes/docs/baseDoc/com/ama747/enemies/BaseEnemy.html...
code/src/BaseEnemy/BaseEnemy.java:27: error: @param name not found
    @param health The health of the enemy */


我的问题如下:是什么导致我的错误,我该如何解决?

最佳答案

它正确地说出了问题。您的构造函数中没有名为“健康”的参数。

关于java - Javadocs-找不到@param名称,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47418027/

10-10 13:40