所在包

java.lang

System

描述

in、out、err都是流对象

image.png

arraycopy方法

  1. public static void main(String[] args) {
  2. String[] arr = new String[5];
  3. arr[0] = "aaa";
  4. arr[1] = "bbb";
  5. arr[2] = "ccc";
  6. arr[3] = "ddd";
  7. arr[4] = "fff";
  8. //删除arr[1]
  9. int index = 1;
  10. int total = arr.length;
  11. System.arraycopy(arr, index+1, arr, index, total-(index+1));
  12. arr[total-1] = null;
  13. total--;
  14. for (String str : arr) {
  15. System.out.println(str);
  16. }
  17. }
  18. /*
  19. 输出结果:
  20. aaa
  21. ccc
  22. ddd
  23. fff
  24. null
  25. */

Runtime

描述

代表运行环境

image.png