最終更新:2015-12-01 (火) 18:30:19 (3067d)  

AOSP/コーディング規約
Top / AOSP / コーディング規約

https://source.android.com/source/code-style.html

Follow Field Naming Conventions

  • Non-public, non-static field names start with m.
  • Static field names start with s.
  • Other fields start with a lower case letter.
  • Public static final fields (constants) are ALL_CAPS_WITH_UNDERSCORES.

古い日本語訳

Java/修飾子