Eclipse設置代碼模板Code Template

  • 團隊協做最好是使用相同的代碼模板 Code Template,打開 Window -> Preference -> Java -> Code Style -> Code Template,而後展開 Comments 節點下的 Types 進行編輯(通常須要編輯該 Java 類的代碼模板)。
  • 編輯 Code Template 以下
/**
 * @Description: ${todo}(這裏用一句話描述這個類的做用)
 * @author ${user}
 * @since JDK 1.8
 * @version V1.0
 * Date:${date} ${time}
 * Copyright (c) ${year}, 89757@qq.com All Rights Reserved. 
 * ${tags}
 */
  • 修改後的 Code Template 以下
/**
 * Hello World
 * @author Administrator
 * @since JDK 1.8
 * @version V1.0
 * Date:2019年5月30日 下午11:11:11
 * Copyright (c) 2019, 89757@qq.com All Rights Reserved.
 */
public class HelloWorld {

    public static void main(String[] args) {
        System.out.println("Hello World!");
    }
}
相關文章
相關標籤/搜索