我应该在哪里评论 Kotlin 源文件?
类和其他对象有 KDoc:
/**
* Summary
*
* Rest of documentation goes here.
*/
class A {
...
}
但是我应该把这样的东西放在哪里?
// This file contains constants shared between frontend and backend.
// Make sure not to use any JVM- or JS-specific import.
// ...
package
申报前?之后呢?我应该使用 KDoc 注释/块注释/行注释吗?
有没有既定的约定?