本文介绍了“第一句应以句号结尾。”的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Java Checkstyle使我感到困惑和困惑。

Java checkstyle confuses and baffles me.

package pmain;

/**
 * Some text here.
 */

public class Main {

}

这实际上是我拥有的所有代码。 Checkstyle显示第一句应以句号结尾。

This is literally all of the code I have. Checkstyle displays a "First sentence should end with a period." at the "/**".

为什么CheckStyle会产生此警告?

Why does CheckStyle produce this warning?

checkstyle config I需要用破吗?难道我做错了什么?是这里有一些文字不是第一句话吗?是。不是句号?

Could the checkstyle config I'm required to use be broken? Am I doing something wrong? Is "Some text here" not the first sentence? Is "." not a period?

推荐答案

第一句应以点号结尾。

The first sentence should end with a dot.

/**
 *An abstract class that represents an algorithm.
 *
 * @author zhangtj
 *
 * @version 1.0
*/

可以通过。

这篇关于“第一句应以句号结尾。”的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-09 17:27