android – 什么更快?一个intent.putExtras(捆绑带字符串)或许多intent.putExtra(字符串)?

前端之家收集整理的这篇文章主要介绍了android – 什么更快?一个intent.putExtras(捆绑带字符串)或许多intent.putExtra(字符串)?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

什么更快?将一堆字符串值添加到一个包中,然后将其添加到一个意图?或者只是使用intent.putExtra()将值添加到intent中?或者它没有太大区别?

谷歌搜索给了我教程,但没有太多答案.只是出于好奇,想知道是否会影响使用其中一个的性能. This接近了,但没有回答我想知道的事情.

最佳答案
自己创建Bundle然后将其添加到intent应该更快.

根据source code,Intent.putExtra(String,String)方法如下所示:

public Intent putExtra(String name,String value) {
    if (mExtras == null) {
        mExtras = new Bundle();
    }
    mExtras.putString(name,value);
    return this;
}

因此,它将始终检查是否已创建Bundle mExtras.这就是为什么对于大量的String添加可能会慢一点. Intent.putExtras(Bundle)看起来像这样:

public Intent putExtras(Bundle extras) {
    if (mExtras == null) {
        mExtras = new Bundle();
    }
    mExtras.putAll(extras);
    return this;
}

因此,它将仅检查(mExtras == null)一次,然后使用Bundle.putAll()将所有值添加到内部Bundle mExtras:

public void putAll(Bundle map) {
     unparcel();
     map.unparcel();
     mMap.putAll(map.mMap);

     // fd state is now known if and only if both bundles already knew
     mHasFds |= map.mHasFds;
     mFdsKnown = mFdsKnown && map.mFdsKnown;
 }

Bundle由Map(确切地说是HashMap)备份,因此将所有字符串一次添加到此映射也应该比逐个添加字符串更快.

原文链接:https://www.f2er.com/android/430918.html

猜你在找的Android相关文章