So at the top of my code I declared the variable
private long counter;
And when I try to give it a number that's really long it gives an error, Im trying to do this
counter = 1111111111111111;
Thats 16 "1"s and I keep getting the error "The literal 1111111111111111 of type int is out of range" what am I doing wrong?
|
|
|||
|
|
|
Try it like this:
Note that the last character there is the letter 'L' (lowercase, of course), and not the number one. Here is a clearer example:
As others have pointed out, an uppercase 'L' also works and is much more clear. All integer literals in Java are interpreted as A similar thing happens with literal floating-point numbers, which are interpreted as
|
|||||||||||||
|
|
The java compiler reads any number as an integer by default. 11111111111 is obviously outside the range of an integer. Type |
|||
|
|
|
The problem is that numeric literals are
In C# you can also use an upper-case L. I'm not sure about Java. |
|||
|
|