java 文档中未归属的作者是什么
What is unascribed author in java docs
一些Java类,如Object define in java docs @author
as unascribed
* @author unascribed
* @see java.lang.Class
* @since JDK1.0
*/
public class Object {
时可能会用到
If the author is unknown, use "unascribed" as the argument to @author.
并找到一个 JDK not-issue 在没有定义作者时使用该术语
many reflection classes unascribed
Many of the new APIs have no @author tag.
所以 unascribed
基本上是 Java 等同于 "John Doe"/"Jane Doe"?
当然,有些class的不标明作者最基本的方法就是不标明作者,即不写@author
标签。
定义 "unascribed" 之类的东西来表示不记录作者已经是多余的,而且(对我来说)似乎有点奇怪。
一些Java类,如Object define in java docs @author
as unascribed
时可能会用到* @author unascribed * @see java.lang.Class * @since JDK1.0 */ public class Object {
If the author is unknown, use "unascribed" as the argument to @author.
并找到一个 JDK not-issue 在没有定义作者时使用该术语
many reflection classes unascribed
Many of the new APIs have no @author tag.
所以 unascribed
基本上是 Java 等同于 "John Doe"/"Jane Doe"?
当然,有些class的不标明作者最基本的方法就是不标明作者,即不写@author
标签。
定义 "unascribed" 之类的东西来表示不记录作者已经是多余的,而且(对我来说)似乎有点奇怪。