부록 B. 코틀린 코드 문서화
KOTLIN IN ACTION 부록 B를 요약한 내용입니다.
코틀린 문서화 주석 작성
/**
* Performs a complicated operation.
*
* @param remote If true, executes operation remotely
* @return The result of executing the operation
* @throws IOException if remote connnection fails
* @sample com.mycompany.SomethingTest.simple
*/
fun somethingComplicated(remote: Boolean): ComplicatedResult { ... }API 문서 생성

Last updated