方法一:Eclipse中設定在建立新類時自動生成註釋
windows–>preference
Java–>Code Style–>Code Templates
code–>new Java files
編輯它
123456789
${filecomment}${package_declaration}/*** @author 作者 E-mail:* @version 建立時間:${date} ${time}* 類說明*/${typecomment}${type_declaration}
方法二:
透過選單 Window->Preference 開啟引數設定面板,然後選擇:
Java -> Code Style -> Code Templates
在右側選擇Comments,將其中的Files項,然後選右邊的”Edit”,進入編輯模式:
進入編輯模式後就可以自定義註釋了。另外可以插入一些變數,如年、日期等等。
最後,確保 Code -> New java files 中有:”${filecomment}”
當然,透過“匯出”和“匯入”功能,你可以把自己的模板匯出來在其他機器上使用。
以上是檔案註釋,類中的方法自動添加註釋類似,對應於Files下面的Types。
Eclipse快捷鍵:選中你的方法後alt+shift+J
關鍵詞列表:
@author 作者名
@date 日期
@version 版本標識
@parameter 引數及其意義
方法一:Eclipse中設定在建立新類時自動生成註釋
windows–>preference
Java–>Code Style–>Code Templates
code–>new Java files
編輯它
123456789
${filecomment}${package_declaration}/*** @author 作者 E-mail:* @version 建立時間:${date} ${time}* 類說明*/${typecomment}${type_declaration}
方法二:
透過選單 Window->Preference 開啟引數設定面板,然後選擇:
Java -> Code Style -> Code Templates
在右側選擇Comments,將其中的Files項,然後選右邊的”Edit”,進入編輯模式:
進入編輯模式後就可以自定義註釋了。另外可以插入一些變數,如年、日期等等。
最後,確保 Code -> New java files 中有:”${filecomment}”
當然,透過“匯出”和“匯入”功能,你可以把自己的模板匯出來在其他機器上使用。
以上是檔案註釋,類中的方法自動添加註釋類似,對應於Files下面的Types。
Eclipse快捷鍵:選中你的方法後alt+shift+J
關鍵詞列表:
@author 作者名
@date 日期
@version 版本標識
@parameter 引數及其意義