非公有、非静态字段命名以m开头。
静态域命名以s开头。
公有字段以小写字母开头。
public static final 字段(常量) 全部大写,并用下划线连起来。
1 public class MyClass {
2
3 public static final int SOME_CONSTANT = 42;
4
5 public int publicField;
6
7 private static MyClass sSingleton;
8
9 int mPackagePrivate;
10
11 private int mPrivate;
12
13 protected int mProtected;
14
15 }