- 0133技术站
- 联系QQ:18840023
- QQ交流群
- 微信公众号
描述: 标识的类型。
@kind <kindName>
<kindName>
取值为:
@kind标签是用来指明什么样的标识符被描述(例如,一类或模块)。标识符kind 不同于标识符type(例如,字符串或布尔)。
通常你不需要@kind
标签,因为标识符的kind是由doclet的其他标记来确定。例如,使用@class
标签自动意味着“@kind class”,使用@namespace
标签则意味着“@kind namespace”。
例如,使用 @kind:
// The following examples produce the same result: /** * A constant. * @kind constant */ const asdf = 1; /** * A constant. * @constant */ const asdf = 1;
kind标签可能引起冲突(例如,使用 @module,表示他的kind为"module",同时,又使用了"@kind constant",表示他的kind为"constant"),在这种情况下最后的标签决定kind 的值。
例如,冲突的@kind语句:
/** * This will show up as a constant * @module myModule * @kind constant */ /** * This will show up as a module. * @kind constant * @module myModule */
推荐手册