如何成为Android编程高手
2010-08-23 01:18:00 来源:WEB开发网使用常量
让我们来看看这两段在类前面的声明
1 static int intVal = 42; 2 static String strVal = "Hello, world!";
必以其会生成一个叫做
下面我们做些改进,使用“final"关键字:
1 2 static final int intVal = 42; 3 4 static final String strVal = "Hello, world!";
现在,类不再需要
将一个方法或类声明为"final"不会带来性能的提升,但是会帮助编译器优化代码。举例说,如果编译器知道一个"getter"方法不会被重载,那么编译器会对其采用内联调用。
你也可以将本地变量声明为"final",同样,这也不会带来性能的提升。使用"final"只能使本地变量看起来更清晰些(但是也有些时候这是必须的,比如在使用匿名内部类的时候)(xing:原文是 or you have to, e.g. for use in an anonymous inner class)
谨慎使用foreach
foreach可以用在实现了Iterable接口的集合类型上。foreach会给这些对象分配一个iterator,然后调用 hasNext()和next()方法。你最好使用foreach处理ArrayList对象,但是对其他集合对象,foreach相当于使用 iterator。
下面展示了foreach一种可接受的用法:
1 public class Foo { 2 3 int mSplat; 4 5 static Foo mArray[] = new Foo[27]; 6 7 public static void zero() { 8 9 int sum = 0; 10 11 for (int i = 0; i < mArray.length; i++) { 12 13 sum += mArray[i].mSplat; 14 } 15 16 } 17 18 19 20 public static void one() { 21 22 int sum = 0; 23 24 Foo[] localArray = mArray; 25 26 int len = localArray.length; 27 28 for (int i = 0; i < len; i++) { 29 30 sum += localArray[i].mSplat; 31 32 } 33 34 } 35 public static void two() { 36 37 int sum = 0; 38 39 for (Foo a: mArray) { 40 41 sum += a.mSplat; 42 43 } 44 45 } 46 47 } 48 49
更多精彩
赞助商链接