This number falls into the long range, so why do I get the error:
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
The literal 8751475143 of type int is out of range
|
This number falls into the long range, so why do I get the error:
|
|||
|
|
|
Make it
by default its
|
|||||||||||||||
|
|
The target of the assignment isn't taken into account when parsing the literal - so you need the L suffix:
For the most part - and there are a few notable exceptions - the type of an expression is determined without much reference to its context. So as per section 3.10.1 of the JLS, an integer literal is of type |
|||
|
|
|
All numbers in java are treated as So, if you write
java will tread the number However, if you type:
Java cannot treat
|
|||
|
|