标签:一个 href prot throw tail 比较 dex details row
1.for 循环逐一复制
2.System.arraycopy
3.Array.copyOf
4.使用clone方法
以上四种方法效率比较:
System.arraycopy > clone > System.copyOf > for循环
注解:arraycopy作为natvie(本地)方法,是最快的,下面该方法源码的描述。
public static native void arraycopy(Object src, int srcPos,Object dest, int destPos,int length);
Arrays.copyOf(Arrays类)的实现,在源码中是调用System.copyOf的,多了一个步骤。
关于clone的源码定义如下;
protected native Object clone() throws CloneNotSupportedException;
关于clone网上好多帖子给出的是实验结果。
一下帖子可能讲的更详细:
http://xuyuanshuaaa.iteye.com/blog/1046621
http://blog.csdn.net/stand1210/article/details/52686740(效率实验)
http://blog.csdn.net/tingzhiyi/article/details/52344845
标签:一个 href prot throw tail 比较 dex details row
原文地址:http://www.cnblogs.com/shuoli/p/7259381.html