利用System.arraycopy代替for循环实现数组复制

本文通过对比测试System.arraycopy方法与传统for循环在数组复制过程中的效率差异,验证了System.arraycopy作为native函数在性能上的优势。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
 * 利用System.arraycopy代替for循环数组复制
 * @author tanlk
 * @date 2017年7月20日下午4:04:25
 */
public class ArrayCopyTest {
    public static void main(String[] args) {
        int[] resource = new int[10000000];
        int[] destination = new int [10000000];
        for(int i=0; i< resource.length; i++){
            resource[i] = i;
        }
        long start = System.currentTimeMillis();
        System.arraycopy(resource, 0, destination, 0, 10000000);
        long end = System.currentTimeMillis();
        System.out.println(end-start);
         
         
        long start2 = System.currentTimeMillis();
        int[] destination2 = new int [10000000];
        for(int i=0; i<destination2.length;i++){
            destination2[i] = resource[i];
        }
        long end2 = System.currentTimeMillis();
        System.out.println(end2-start2);
    }
}
耗时如下:
1
2
6
38
System.arraycopy()函数是native函数,通常native函数的性能要优于普通的函数,仅出去性能考虑,在软件开发时,应尽可能调用native函数

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值