Skip to content

Instantly share code, notes, and snippets.

@shuu1222
Created May 30, 2019 12:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shuu1222/1e0eccf5413a198e929653b4856ef824 to your computer and use it in GitHub Desktop.
Save shuu1222/1e0eccf5413a198e929653b4856ef824 to your computer and use it in GitHub Desktop.
// 参照型について
int[] a ={3 , 5 , 7};
int[] b = a;
b[1] = 8;
System.out.println(a[1]);
System.out.println(b[1]);
// output
// 8
// 8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment