System的一些方法
作者:互联网
package com.liu.demo1;
public class Stm {
public static void main(String[] args) {
int[] arr = {9,8,5,45,4,3241,684,45,50};
int[] dest =new int[10];
//arraycopy 拷贝
//srcPos 从第几位开始复制0开始 destPos目标数组从第几位开始放 length放的长度
System.arraycopy(arr,4,dest,4,4);
for (int i : dest) {
System.out.print(i+" "+" ");
}
//currentTimeMillis计算1970到现在的时间毫秒 可以用来计时
long start = System.currentTimeMillis();
for (int i = -999999; i < 999999; i++) {
for (int j = -9999999; j < 9999999; j++) {
}
}
long end = System.currentTimeMillis();
System.out.println("用时"+(end-start));
System.gc();//告诉垃圾回收期回收垃圾 可以重写finalize();方法 obj里面
// protected void finalize() throws Throwable {
// System.out.println("回收了"+xxx);
//}
System.exit(0);//退出JVM 0正常退出 非0非正常退出
//退出之后后面的代码就不执行了
System.out.println("结束");
}
}
标签:int,System,currentTimeMillis,dest,println,一些,方法,out 来源: https://www.cnblogs.com/sm12580/p/15387904.html