System类
-
常见方法
-
exit 退出当前程序
System.out.println("ok1"); //1. exit(0) 表示程序退出 //2. 0 表示一个状态,正常的状态 System.exit(0); System.out.println("ok2"); //运行结果:ok1
-
arraycopy 复制数组元素,比较适合底层调用,一般使用 Arrays.copyOf完成复制数组
int[] src = {1, 2, 3}; int[] dest = new int[3]; // dest 当前是 {0,0,0} //五个参数 (1)原数组 (2)从原数组的哪个索引位置开始 // (3)目标数组,即把原数组的数据拷贝到哪个数组 // (4)把原数组的数据拷贝到目标数组的哪个索引 // (5)从原数组拷贝多少个数据到目标数组 System.arraycopy(src,0,dest,0,3); System.out.println("dest=" + Arrays.toString(dest));
-
currentTimeMillens 返回当前时间距离 1970-1-1 的毫秒数
-
gc 运行回收垃圾机制
-