本文主要是介绍system下的currentTimeMillis()与arraycopy方法!,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#system类下的方法
currentTiemMills()方法
代码(程序运行时间举例):
public class Demo01System {
public static void main(String[] args) {long s=System.currentTimeMillis();//返回当前时间,以秒计算。int sum=0;for (int i = 0; i < 9999; i++) {sum=sum+i;if (i!=9998)System.out.print(i+",");elseSystem.out.println(i);}System.out.println();System.out.println(sum);long e=System.currentTimeMillis();System.out.println("程序运行的时间为:"+(e-s)+"毫秒");
}
}
运行效果
//省略
程序运行的时间为:111毫秒
arraycopy方法
代码:
public class Demo02SystemArrayCopy {
public static void main(String[] args) {int[] src={1,2,3,1,1,0};int[] dest={45,4,5,5,2,0};System.out.println(Arrays.toString(dest));System.arraycopy(src,0,dest,1,3);System.out.println("复制后:"+ Arrays.toString(dest));
}
}
注:
System.arraycopy(src,0,dest,1,3);
src代表的是来源的数组(被复制的数组),后面的0代表的是其开始复制的起始位置是数组的第一个元素,dest是要复制的数组,1代表从第二个位置开始被替代。最后的3表示要复制的长度。返回值是dest数组
显示效果:
[45, 4, 5, 5, 2, 0]
复制后:[45, 1, 2, 3, 2, 0]
这篇关于system下的currentTimeMillis()与arraycopy方法!的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!