System类
exit 退出当前程序 System.exit(0);
arraycopy : 复制数组元素,比较适合底层调用,一般使用Arrays.copyOf 完成复制数组 int[] src={1,2,3}; int[] dest = new int [3]; System.arraycopy(src,0,dest,0,3);
currentTimeMillens:返回当前时间距离1970-1-1的毫秒数
gc:运行垃圾回收机制 System.gc();
System类
exit 退出当前程序 System.exit(0);
arraycopy : 复制数组元素,比较适合底层调用,一般使用Arrays.copyOf 完成复制数组 int[] src={1,2,3}; int[] dest = new int [3]; System.arraycopy(src,0,dest,0,3);
currentTimeMillens:返回当前时间距离1970-1-1的毫秒数
gc:运行垃圾回收机制 System.gc();