Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to declare a long value in Java, which unfortunately does not work.

This is my code. It results in the following error message: "The literal 4294967296 of type int is out of range".

long bytes = 4294967296;

I need this value to make a file filter that filters out files that are bigger than 4294967296 bytes (4GB). The other way round works without any issues (long size = file.length()) with every file size, which is why I can't figure out why my declaration is not working.

share|improve this question
7  
You should accept one of the correct answers. – Jaap Jan 14 at 12:40

5 Answers

Add L to the end of the number:

long bytes = 4294967296L;
share|improve this answer
Thank you too. Appreciate it! – Peter Feb 28 '10 at 0:21

To answer your question title, the maximum value of a long can be obtained via the constant:

Long.MAX_VALUE

To solve your problem - add the l (L) literal after the number.

share|improve this answer

try long bytes = 4294967296L; to indicate to the compiler that you are using a long.

share|improve this answer
Thank you very much Soufiane! Always astonishing how quick you guys are! :) – Peter Feb 28 '10 at 0:21
4  
You're welcome. Just don't forget to accept an answer. :-) – Soufiane Hassou Feb 28 '10 at 2:49

long literals are followed by the letter L or l (see: JLS 3.10.1). Uppercase is better because it's more legible, lowercase l looks too similar to 1.

For your particular number, it's probably easier to write:

 long bytes = (1L << 32);

This way, someone who reads the code can quickly tell that bytes is exactly 2 to the power of 32.

share|improve this answer

Soufiane is correct. Here is a doc that shows how to declare literals of the various types of numbers in Java:

http://www.janeg.ca/scjp/lang/literals.html

share|improve this answer
Great link! Many thanks! – Peter Feb 28 '10 at 0:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.