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

来源:互联网 发布:c语言工资计算系统 编辑:程序博客网 时间:2024/06/06 03:59
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函数

阅读全文
0 0
原创粉丝点击