1.配置路径:
一、首先我们来设置IDEA中类的模板:(IDEA中在创建类时会自动给添加注释)
1、File-->settings-->Editor-->File and Code Templates-->Files
首先来到配置界面我去找了翻译片段
大致的意思如下:
这是一个
内置模板
,每次创建新的Java类时都会使用它,方法是从一个项目视图中的弹出菜单中选择new | Java类| class。模板是可编辑的
。除了Java表达式和注释之外,您还可以使用预定义的变量(如下所示),然后将这些变量像宏一样展开为相应的值。也可以以${}的格式指定任意数量的自定义变量。在这种情况下,在创建新文件之前,将出现一个对话框,您可以在其中为所有自定义变量定义特定的值。使用#parse指令,您可以通过在引号中指定所需模板的全名作为参数,从include选项卡中包含模板。例如:#parse("File Header.java") 如果“NAME”不是系统能获取的值 就需要弹出框手动填写就像对话框一样
我们选择Class文件(当然你要设置接口,也可以选择Interface文件)
1.上配置图
2.代码参考
/**
@ClassName -> ${NAME}
@Description
@Author 龙岭
@Date ${DATE} ${TIME} ${DAY_NAME_FULL}
@Version 1.0
*/
那么这些变量是什么意思呢?我在下面依次阐述并且附带示例
name of the package in which the new class is created 项目名 ${PACKAGE_NAME}
name of the new class specified by you in the Create New Class dialog 文件名 ${NAME}
current user system login name 系统用户名 ${USER}
current system date ${DATE}
current system time 具体时间 ${TIME}
current year 年份 ${YEAR}
current month 二月 ${MONTH}
first 3 letters of the current month name. Example: Jan, Feb, etc.
${MONTH_NAME_SHORT}
full name of the current month. Example: January, February, etc. ${MONTH_NAME_FULL}
current day of the month ${DAY} 一个月的第几天
current hour ${HOUR} 小时
current minute ${MINUTE} 分钟
the name of the current project ${PROJECT_NAME} 项目名称