gpt4 book ai didi

java - 如何评论枚举以使 checkstyle 快乐?

转载 作者:行者123 更新时间:2023-11-30 07:35:26 27 4
gpt4 key购买 nike

这是代码:

/**
* some text.
*/
public class Foo {
/**
* Some comment...
*/
public enum Bar {
/**
* some text.
*/
ABC,
/**
* some text.
*/
CDE;
};
}

Checkstyle 显示 Missing a Javadoc comment. 两次(ABC 行和 CDE 行)。它是关于什么的?我应该在哪里添加评论? JavaDoc 工作得很好。

最佳答案

神奇的static解决了这个问题:

/**
* some text.
*/
public class Foo {
/**
* Some comment...
*/
public static enum Bar {
/**
...

关于java - 如何评论枚举以使 checkstyle 快乐?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4478662/

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