Skip to content

Instantly share code, notes, and snippets.

@lsamayoa
Created July 10, 2015 12:53
Show Gist options
  • Save lsamayoa/16f465755148f049eb6c to your computer and use it in GitHub Desktop.
Save lsamayoa/16f465755148f049eb6c to your computer and use it in GitHub Desktop.
Int not set getter test
public class NotSetIntGetterTest {
private int doNotSet;
public int getDoNotSet(){
return doNotSet;
}
public static void main(String[] args) {
int result = 0;
while(result == 0){
result = new NotSetIntGetterTest().getDoNotSet();
System.out.println(result);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment