在myeclipse中如何自动生成注释,修改注释内容

想在myeclipse中添加注释时自动把一些内容,比如说作者姓名,email,时间,日期等快速的添加到注释中,可采用以下方法:

myeclipse -> Window -> Preferences -> Java -> Code Style -> Code Templates -> Comments -> Types

点击Edit ,可在Pattern 里面设置自己想要的注释模式,比如说作者,
@author ${user},${user}通过下方按钮Insert Variable...添加,点击user就可以了,注释写完以后,点击ok,把下方的Automatically add comments for new methods and types 前面的方框打上勾,点击apply,ok就可以了。

写代码时,写/**回车就可以看到所有设定的注释啦!!

你可能感兴趣的:(myeclipse)