Skip to content

Instantly share code, notes, and snippets.

@harageth
Created September 21, 2017 20:13
Show Gist options
  • Save harageth/5bb6392e3b5f32262a0a6bde19dbba99 to your computer and use it in GitHub Desktop.
Save harageth/5bb6392e3b5f32262a0a6bde19dbba99 to your computer and use it in GitHub Desktop.
package passByReference;
public class passByReference {
int value;
public passByReference(int value) {
this.value = value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment