Is this following code valid:
float pi1 = 3_.1415F
Invalid, cannot put underscores adjacent to a decimal point
Is this following code valid:
long socialSecurityNumber1 = 999_99_9999_L
Invalid: cannot put underscores prior to an L suffix
Is this following code valid:
int x1 = 5_2;
OK
Is this following code valid:
int x2 = 52_;
Invalid: cannot put underscores at the end of a literal
Is this following code valid:
int x4 = 0_x52;
Invalid: cannot put underscores in the 0x radix prefix
Is this following code valid:
int x5 = 0x_52;
Invalid: cannot put underscores in the 0x radix prefix
Is this following code valid:
int x7 = 0x52_;
Invalid: cannot put underscores at the end of a number