gpt4 book ai didi

java - 如何修复 checkstyle 错误 "Expected an @return tag."?

转载 作者:行者123 更新时间:2023-12-02 01:40:23 25 4
gpt4 key购买 nike

我的一段代码在检查样式时返回:“[错误] UserInfo.java:39:需要 @return 标记。[JavadocMethod]”

我只是想将 javadoc 注释添加到我的代码中,以前从未遇到过此问题。我不知道要在 javadoc 注释中添加什么内容来解决下一部分(这就是为什么“定义信息格式”之后它是空白的)

 /**
* Defines format of information.
*
*
*
*/
public String toString()
{
String output = "Name: " + firstName + " "
+ lastName + "\n";
output += "Location: " + location + "\n";
output += "Age: " + age + "\n";
output += "Status: ";
if (status == OFFLINE)
{
output += "Offline";
}
else
{
output += "Online";
}

return output;
}

最佳答案

最简单的方法是在 javadoc 注释中添加一个 @return 标记来描述函数返回的内容。

关于java - 如何修复 checkstyle 错误 "Expected an @return tag."?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54526753/

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