Kotlin 生成注释文档
Kotlin Generate Comment Doc
对于 Java,我们过去常常在方法之前使用 /**
,然后就会出现一个漂亮的自动生成的文档。不能对 Kotlin 做同样的事情。此功能是否可用,默认情况下处于关闭状态?我怎样才能打开它?
Kotlin 文档工具被称为 Dokka. You can document your code as in java with /**. Take a look to the official docs: https://kotlinlang.org/docs/reference/kotlin-doc.html
对于 Java,我们过去常常在方法之前使用 /**
,然后就会出现一个漂亮的自动生成的文档。不能对 Kotlin 做同样的事情。此功能是否可用,默认情况下处于关闭状态?我怎样才能打开它?
Kotlin 文档工具被称为 Dokka. You can document your code as in java with /**. Take a look to the official docs: https://kotlinlang.org/docs/reference/kotlin-doc.html