Skip to content

Instantly share code, notes, and snippets.

@knjname
Last active December 17, 2015 00:49
Show Gist options
  • Select an option

  • Save knjname/5523816 to your computer and use it in GitHub Desktop.

Select an option

Save knjname/5523816 to your computer and use it in GitHub Desktop.
public class NumberUnderscore {
public static void main(String[] args) {
int a;
a = 222_222;
a = 0b00_00; // binary literal
a = 0_2; // octal
// a = 0_9; illegal octal number
// a = 3333._222; illegal
// a = 2222_.222; illegal
// a = 222_; illegal
// a = _222; illegal
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment