-
System系统类,主要用于获取系统的属性数据好其他操作,构造方法私有的
方法名 说明 static void arraycopy(…) 复制数组 static long currentTimeMillis(); 获取当前系统时间,返回值是毫秒数 static void gc(); 建议jvm赶快启动垃圾回收器回收垃圾 static void exit(int status); 退出jvm,如果参数是0表示正常退出,否则异常退出 //arraycopy(源数组,源数组位置,目标数组,目标数组位置,复制长度) int[] arr = {1,2,3,4,5,6}; int[] dest = new int[5]; System.arraycopy(arr, 1, dest, 0, 4); for(int i = 0; i < dest.length; i++){ System.out.println(dest[i]); //2 3 4 5 0 } //currentTimeMillis()计算用时 long start = System.currentTimeMillis(); for(int i = 0; i < 999999999; i++){ for(int j = 0; j < 999999999; j++){ int result = i+j; } } long end = System.currentTimeMillis(); System.out.println(end-start); //14 //退出jvm System.exit(0);
System类
最新推荐文章于 2024-11-03 11:01:20 发布