System类
System类常见方法和案例
- exit退出当前程序
- arraycopy:复制数组元素,比较适合底层调用,一般使用Arrays.copyOf完成复制数组.
int[] src={1,2.33;
int[] dest = new int[3];
System.arraycopy(src, 0, dest, 0. 3); - currentTimeMillens:返回当前时间距离1970-1-1的毫秒数4)gc:运行垃圾回收机制System.gc();
System类
System类常见方法和案例
本文标题:System类
本文链接:https://www.haomeiwen.com/subject/jamxtrtx.html
网友评论