日食中绿色和蓝色评论的区别

时间:2012-11-19 12:51:52

标签: java eclipse

我在eclipse中看过两种类型的评论。一种是绿色,另一种是蓝色。两者有什么区别?哪个用于函数,哪个用于类和其他变量?

4 个答案:

答案 0 :(得分:14)

这两种评论是:

/**
  * comment goes here (notice the extra '*' in previous line)
  */

和此:

/*
 * comment goes here (notice the extra '*' is not present in previous line)
 */

这两种评论风格有不同的颜色。 第一个获得蓝色,第二个获得绿色。

第一种风格是Javadoc注释,可用于生成各种文档格式。 Eclipse将使用它们为记录的项目生成工具提示和自动完成文档。

更多细节see the documentation

答案 1 :(得分:2)

// and /* .. */    are standard comments and show up in green color
/** ...... **/     are javadoc comments and show up in blue color

文档JavaDoc

答案 2 :(得分:1)

绿色评论是正常评论,蓝色评论是JavaDoc评论

答案 3 :(得分:1)

我猜一个是普通评论(/* ... */),而另一个是javadoc(/** ... */)表示特定的类和方法文档。