Skip to content

Instantly share code, notes, and snippets.

@MericBERBER
Created June 13, 2017 13:09
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 MericBERBER/0d84fd9e47213662121d0d08deb9a874 to your computer and use it in GitHub Desktop.
Save MericBERBER/0d84fd9e47213662121d0d08deb9a874 to your computer and use it in GitHub Desktop.
class PassByReference {
private String value = "First Value";
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment