所在包
java.lang
System
描述
in、out、err都是流对象
arraycopy方法
public static void main(String[] args) {
String[] arr = new String[5];
arr[0] = "aaa";
arr[1] = "bbb";
arr[2] = "ccc";
arr[3] = "ddd";
arr[4] = "fff";
//删除arr[1]
int index = 1;
int total = arr.length;
System.arraycopy(arr, index+1, arr, index, total-(index+1));
arr[total-1] = null;
total--;
for (String str : arr) {
System.out.println(str);
}
}
/*
输出结果:
aaa
ccc
ddd
fff
null
*/
Runtime
描述
代表运行环境