java中有3种类型的注释。
单行评论://just like this
//just like this
多行评论:starts with /* and ends with */
starts with /* and ends with */
文档评论:starts with /** and ends with */
starts with /** and ends with */
那么这种类型的评论叫什么:
/*
* this
* works
* as
* comment
* too
* */
森栏
相关分类