1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Kotlin コード規約( Coding conventions for libraries )

Last updated at Posted at 2018-01-23

公式の和訳(意訳)です.

ライブラリのコード規約

ライブラリを書くときは,APIを安定させるために,追加で以下の規約に従うことを推奨する.

  • メンバの可視性を明示する(不用意に public API として宣言することを避ける)
  • 関数の返り値やプロパティの型を明示する(実装を変更するときに,不用意に型も変えてしまうことを避ける)
  • すべての public なメンバに KDoc コメントをつける.ただし,新しいドキュメントが不要なオーバーライドを除く(ライブラリのドキュメント生成をサポートする)
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?