Android高效编程注意事项

最近用Android开发了几个模块,感觉有点慢,后来好好看了相关优化Android代码的知识,优化之后,感觉快了很多。在这里与大家分享一下,下面只是说的一些很基础 有很重要的知识,你想要编写运行速度很快、占用内存少的代码可能有点帮助。

概述

There are two basic rules for resource-constrained systems

Don't do work that you don't need to do.

Don't allocate memory if you can avoid it.

All the tips below follow from these two basic tenets.

知识点

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

 这些时间相对值,值得我们好好的权衡哦,很有帮助。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值