Skip to content

Instantly share code, notes, and snippets.

@kizashitakata
Last active June 30, 2017 15:22
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 kizashitakata/12903ebdee81abf238e07c8a9c92ce9d to your computer and use it in GitHub Desktop.
Save kizashitakata/12903ebdee81abf238e07c8a9c92ce9d to your computer and use it in GitHub Desktop.
sample01
public static void main(String[] args) {
int mistir = 1;
add(mistir);
System.out.println(mistir);//1だよ
}
private void add(int estark){
estark += 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment