System类
System.exit(0)

System.arraycopy(src,1,dest,1,3);
int[] src={0,1,2,3,4,5}; int[] dest=new int [5]; System.arraycopy(src,1,dest,1,3); //从src数组中的序列1开始拷贝,到数组dest的序列1后, 拷贝数量为3个 System.out.println(Arrays.toString(dest)); //[0, 1, 2, 3, 0]
System.currentTimeMillis()

System.gc()


浙公网安备 33010602011771号