Eclipse创建文件如何自动添加作者、时间等相关注释

1、在eclipse功能菜单区选择window,选择preference


Eclipse创建文件如何自动添加作者、时间等相关注释_第1张图片

2、左边:java>code style>code templates ,右边:code>new java files

输入事例:

${filecomment}

${package_declaration}

/**

* 项目名称:${project_name}

* 文件名称:${file_name}

* 创建日期:${date} ${time} 

* 创建人员:YangXL

* 当前版本:1.0

* 开发环境:JDK 1.8 Eclipse

* 版权信息:Copyright (c) ${year}, [email protected] All Rights Reserved.

* 技术支持:

* 功能描述:

*/

${typecomment}

${type_declaration}


Eclipse创建文件如何自动添加作者、时间等相关注释_第2张图片

你可能感兴趣的:(Eclipse创建文件如何自动添加作者、时间等相关注释)