我正在使用检查样式审核我的代码。这是这个ide中的废物插件。
我不知道为什么我的代码总是显示missing javadoc comment.
即使我给出了适当的评论。
请有任何方法以正确的方式查看代码。
我可以制定自己的规则。
更新
每一行都显示缺少javadoc ...同时发表评论
public class MyTest {
/**
* integer Variable I
*/
public static int I = 10;
/**
* String Variable Name
*/
public static String NAME = "XYZ";
/**
* Constructor
*/
public MyTest() {
}
/**
* Main method
* @param args
*/
public static void main(String[] args) {
System.out.print(NAME+"\n"+I);
}
}
答案 0 :(得分:0)
您收到警告,因为缺少javadoc注释: 实施例
/**
* Gets the distance between tw points.
*/
double getDistance(Point a, Point b);
此评论未完成,因为没有记录参数,但它是checkstyle将接受的最小值(在默认规则中)
同样必须为课程做,有时候也要为田地做。
您可以启用和禁用特定的checkstyle规则,但首先尝试编写代码,使默认规则(防晒检查)不会发出警告。
答案 1 :(得分:0)
您还需要在课堂上发表评论。