如何在 JavaDoc 中插入创建日期 [已关闭]
2022-09-02 02:02:20
在 JavaDoc 中插入类创建日期的最佳方法是什么?一些例子:
在带有字符串“创建于”的作者标记下方
/**
* Class description
*
* @author Author Name
* created on 2015/04/01
*/
public class ClassName() {
...
}
在带有字符串“Date:”的作者标记下方
/**
* Class description
*
* @author Author Name
* Date: 2015/04/01
*/
public class ClassName() {
...
}
具有不存在的@date标记
/**
* Class description
*
* @author Author Name
* @date 2015/04/01
*/
public class ClassName() {
...
}
其他。。。
最终,什么是最好的日期格式?
April 1, 2015
2015/04/01
...