java代码规范与风格

JAVA中自动添加时间注释


打开Eclipse,然后点击->windows->preferences->Java->code styles->code templates->comments->types->点击右侧的edit进行编辑,在打开的编辑窗口中修改下面的文字

/**
 * @author ${user}
 *
 * ${tags}
 */
替换成

/**
 * @author  你的名字
 *
 * ${tags}
 */



你可能感兴趣的:(java)