Android コーディングガイド

ポイント

  • public 以外のメンバは m_をつえて。
  • static は s_ つけて。
  • static finalは全部 大文字。
  • never catch Exception

m_ なんかは、成れないけど、あるクラスのprivateやprotectedにアクセスしていることが
明示的に分かる。
androidなんかはメモリに上限があるから、getter、setterよりも直接 m_ 参照することを
推奨している。

参考にしたサイト:
Code Style Guidelines for Contributors
Designing for Performance