編輯註釋模板的方法:Window->Preference->Java->Code Style->Code Template 而後展開Comments節點就是全部需設置註釋的元素啦。現就每個元素逐一介紹:html
1.文件(Files)註釋標籤:函數
2.類型(Types)註釋標籤(類的註釋):spa
3.字段(Fields)註釋標籤:code
/** * @Fields ${field} : ${todo}(用一句話描述這個變量表示什麼) */
4.構造函數標籤:htm
/** * @Title: ${enclosing_type} * @Description: ${todo}(這裏用一句話描述這個方法的做用) * @param: ${tags} * @throws */
5.方法(Methods)標籤:blog
6.覆蓋方法(Overriding Methods)標籤:ip
/** * <p>Title: ${enclosing_method}</p> * <p>Description: </p> * ${tags} * ${see_to_overridden} */
7.表明方法(Delegate Methods)標籤:get
/** * ${tags} * ${see_to_target} */
8.getter方法標籤:it
/** * @Title: ${enclosing_method} <BR> * @Description: please write your description <BR> * @return: ${field_type} <BR> */
9.setter方法標籤:io
/** * @Title: ${enclosing_method} <BR> * @Description: please write your description <BR> * @return: ${field_type} <BR> */
剩下的就默認了,^_^
轉載自:https://www.cnblogs.com/lr393993507/p/5867623.html