Test08.java 612 B

12345678910111213141516171819202122232425
  1. /**
  2. * ClassName: Test07
  3. * Package: PACKAGE_NAME
  4. * Description:
  5. *
  6. * @Author 爱扣钉-陈晨
  7. * @Create 2023/9/24 14:16
  8. * @Version 1.0
  9. */
  10. public class Test08 {
  11. public static void main(String[] args) {
  12. int[] arr1 = new int[3]; //0x1122
  13. int[] arr2 = new int[3]; //0x1133
  14. arr2[0] = 100; //0x1133[0] = 100
  15. arr2[2] = 200; //0x1133[2] = 200
  16. arr1 = arr2; //0x1133
  17. System.out.println(arr1[0]); //? 0x1133[0] 100
  18. System.out.println(arr1[1]); //? 0x1133[1] 0
  19. System.out.println(arr1[2]); //? 0x1133[2] 200
  20. }
  21. }