System类
System类
System系统类,主要用于获取系统的属性数据和其他操作,构造方法私有
public static void main(String[] args) {
//使用arraycopy()方法实现数组的复制
// src:原数组、srcPos:从哪个位置开始复制
//dest:目标数组 、destPos:目标数组的开始位置 、length:复制的长度
int[] arr=new int[]{11,22,33,44,55};
int[] dest=new int[5];
System.arraycopy(arr,0,dest,0,arr.length);
System.out.println(Arrays.toString(dest));
//通过currentTimeMillis()方法实现计算代码的运行时间
long start=System.currentTimeMillis();
for (int i = 0; i < 9999; i++) {
for (int j = 0; j < 999999; j++) {
int result=i+j;
}
}
long end=System.currentTimeMillis();
System.out.println("运行时间为:"+(end-start));
}
本文来自博客园,作者:望穿先生,转载请注明原文链接:https://www.cnblogs.com/wangchuanxiansheng/p/15839504.html