关于java中的注释行的问题(eclipse)

Abh*_*hek 4 java eclipse comments

这有什么区别

/**
 * comment goes here (notice the extra '*' in previous line)
 */
Run Code Online (Sandbox Code Playgroud)

还有这个?

/*
 * comment goes here (notice the extra '*' is not present in previous line)
 */
Run Code Online (Sandbox Code Playgroud)

因为我注意到在eclipse中这两种评论风格有不同的颜色.第一个获得蓝色,第二个获得绿色.

这两种评论风格有什么区别吗?

Adr*_*Cox 6

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

欲了解更多详情请参阅文档.