当前位置: 网站首页  >> 知识库  >> Android  >> 查看详情

Android高效代码注意什么

发布时间:2019-04-10 11:46:37  浏览次数:3440 
Android高效代码注意什么?

 1, Avoid Creating Objects 

能不使用包装类就不使用包装类。

尽量使用 StringBuffer 来处理字符串

尽量使用一维数组代替多维数组

2, Use Native Methods

尽量使用系统提供的接口方法,因为系统提供的接口方法使用 C 编写的,比自己用 Java 编写的效率高

3, Prefer Virtual Over Interface

多使用接口的具体实现类。

<1>,Map myMap1 = new HashMap();

<2>,HashMap myMap2 = new HashMap();

两者比较结果:第一种是一向大家比较推崇的,因为他对以后的维护成本低,但是接口方法的调用比实现类方法的调用更耗时。

4,   Prefer Static Over Virtual

多使用静态的方法和属性

5,   Avoid Internal Getters/Setters

避免使用 C++ 或 C 形式的 (i=this.getCounter()) 这样子的代码

6, Cache Field Lookups

访问对象的属性比访问本地变量花费时间多。

   Accessing object fields is much slower than accessing local variables.

  Instead of writing:

for (int i = 0; i < this.mCount; i++)

      dumpItem(this.mItems[i]);

You should write:

      int count = this.mCount;

      Item[] items = this.mItems;

     for (int i = 0; i < count; i++)

      dumpItems(items[i]);

7,Declare Constants Final

声明一些 final 类型的常量

static int intVal = 42;

static String strVal = "Hello, world!";

可以写成如下:

static final int intVal = 42;                                                                                           

static final String strVal = "Hello, world!";

 

8,Use Enhanced For Loop Syntax With Caution

谨慎使用增强的 for 循环,因为它创建多余临时变量。

public class Foo {

    int mSplat;

    static Foo mArray[] = new Foo[27];

 

    public static void zero() {

        int sum = 0;

        for (int i = 0; i < mArray.length; i++) {

            sum += mArray[i].mSplat;

        }

    }

 

    public static void one() {

        int sum = 0;

        Foo[] localArray = mArray;

        int len = localArray.length;

 

        for (int i = 0; i < len; i++) {

            sum += localArray[i].mSplat;

        }

    }

 

    public static void two() {

        int sum = 0;

        for (Foo a: mArray) {

            sum += a.mSplat;

        }

    }

}


zero() 返回两次静态字段、每次循环的时候都要请求数组的长度

one() 将所有的属性存放到本地,避免查找。

two() 使用 jdk1.5 以上版本的增强 for 循环,这是有编译器拷贝数组的引用和长度到本地这在主循环体会产生额外的本地装载和存储,这跟 one() 相比,比其运行时间长一小点,同时也比 one() 多 4byte 的存储空间 u

To summarize all that a bit more clearly: enhanced for loop syntax performs well with arrays, but be cautious when using it with Iterable objects since there is additional object creation.

 

9,Avoid Enums

避免使用枚举。

10,Use Package Scope with Inner Classes

建议使用内部类

public class Foo {

    private int mValue;

 

    public void run() {

        Inner in = new Inner();

        mValue = 27;

        in.stuff();

    }

 

    private void doStuff(int value) {

        System.out.println("Value is " + value);

    }

 

    private class Inner {

        void stuff() {

            Foo.this.doStuff(Foo.this.mValue);

        }

    }

}

11,               Avoid Float

尽量避免使用 float 类型

12,               Some Sample Performance Numbers

一些常用操作的占用时间相对比较:

操作                                                                    时间

Add a local variable                                                       1

Add a member variable                                                           4

Call String.length()                                                                     5

Call empty static native method                                            5

Call empty static method                                                        12

Call empty virtual method                                                      12.5

Call empty interface method                                                 15

Call Iterator:next() on a HashMap                                      165

Call put() on a HashMap                                                           600

Inflate 1 View from XML                                                                   22,000

Inflate 1 LinearLayout containing 1 TextView                   25,000

Inflate 1 LinearLayout containing 6 View objects            100,000

Inflate 1 LinearLayout containing 6 TextView objects     135,000

Launch an empty activity                                                        3,000,000

 这些时间相对值,值得我们好好的权衡哦,很有帮助。
联系我们
在线咨询 QQ客服 0731-88362910
地址:湖南省长沙市雷锋大道1389号
如有问题,可在线提交表单