Skip to content

Instantly share code, notes, and snippets.

@ohiofi
Created August 24, 2018 02:57
Show Gist options
  • Save ohiofi/bdb19f789a185a70f39f91a126299996 to your computer and use it in GitHub Desktop.
Save ohiofi/bdb19f789a185a70f39f91a126299996 to your computer and use it in GitHub Desktop.
public class byteOverflow {
public static void main(String[] args) {
//System.out.println(Byte.MAX_VALUE);
//System.out.println(Byte.MIN_VALUE);
byte foo = 127;
foo++;
System.out.println(foo);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment