eclipse中“//”注释的替代方法。

时间:2015-12-14 18:33:32

标签: java eclipse comments

这些在日食中被称为什么。它们默认为蓝色。 它们通常描述类/方法的作用,并在每行前面都有一个astrix。

制作这些内容的键盘快捷键是什么。

我一直在使用“//”评论而且他们很吵闹。

升级时间。

感谢。

/**
     * Returns a Button with save icon and proper styling applied.
     * Also adds a keyboard shortcut for Enter key.
     */
    public static final Button createSaveButton() { return createSubmitButton("Save");  }

1 个答案:

答案 0 :(得分:3)

他们被称为Javadoc评论。您不需要快捷方式。只需在类/方法上方键入/**,然后按 Enter 。 Eclipse将自动为方法参数,返回值等创建模板。