zoukankan      html  css  js  c++  java
  • IDEA自定义模板

    RT,虽然看起来简单,每当配置新的IDEA 时,又不免度娘,所以整理下

    1.类的模板

    • 路径: settings-Editor-File and Code Templates

    • 右侧找到 class 添加如下,在类的上面

    /**
     * @Author taozhaoyang
     * @Description //TODO $DESC$
     * @Date ${DATE} ${TIME}
     **/
    
    • 新建类,自动回填,效果
    /**
     * @Author taozhaoyang
     * @Description //TODO SSS$
     * @Date 2018/7/26 20:15
     **/
    public class Test {
    
    }
    
    

    2. 方法模板

    • 路径: settings-Editor-Live Templates

    • 新建分组 myselfTemplate

    • 分组下新建模板,名称为: *

    • 模板内容设为:

    *
     * @Author taozhaoyang
     * @Description //TODO $end$
     * @Date $time$ $date$
     * @Param $param$
     * @return $return$
     **/
    
    • Expand with Enter
    • Edit Variables
    time  time()
    date  date()
    param methodParameters()
    return methordReturnType()
    
    • Applicable in Java
    • 新建方法,输入: "/*" 加上 "Enter"
    • 效果如下:
        /**
         * @Author taozhaoyang
         * @Description //TODO 
         * @Date 20:27 2018/7/26
         * @Param [args]
         * @return void
         **/
        public static void main(String[] args) {
            
        }
  • 相关阅读:
    demo
    Git
    rest-framework框架 -- 认证权限流程源码
    sublime
    restful 协议 +面试
    Django的CBV
    vue 之 vue-router
    vue 之node.js 02
    浏览器内核
    安装apache+php+mysql
  • 原文地址:https://www.cnblogs.com/Profound/p/9374304.html
Copyright © 2011-2022 走看看