Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图隐藏一个应该只对测试使用可见的方法。
javadoc是否有任何等价物@hide
@hide
我不是使用 KDoc 和 JavaDoc 的专家,如果我缺少任何概念,请指出我。
/** @hide */ fun methodToHide() : String = "foo"
如果您真的想表明方法/函数不是公共 API 的一部分并且仅公开以供测试,那么使用 annotation 被认为是一种好习惯@VisibleForTesting。如果您的项目中没有 guava 或类似库,您可以自己轻松创建此类注释。
@VisibleForTesting