Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working on one hardware interface application where i want to initialize long data type value by any 8 byte number(as it is fixed key given in dll file) Example:

long fixedKey=0123456701234567; //error on this line

Error is : The literal 0123456701234567 of type int is out of range 

I have seen on Primitive Data Types(Java API) range of long is from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807 (19 digit number) . Obviously my entered number (16 digit number) is in the range of long data type, so why i am getting this kind of error.

share|improve this question
6  
Apart from the answer, are you sure you need that leading 0. It would make your literal to be interpreted in Octal. – Rohit Jain Jan 23 at 10:26
@Rohit you are right but as i mentioned in question it is fixed key given in dll file so i cant change this number – Aniket Jan 23 at 10:33
If it's not meant to be interpreted as an octal number, leave off the leading 0, write: long fixedKey = 123456701234567L; – Jesper Jan 23 at 11:16

3 Answers

up vote 11 down vote accepted

append L to the end to make it a long literal

long fixedKey=0123456701234567L; //error on this line
share|improve this answer
3  
+1 for the sheer speed... – ppeterka Jan 23 at 10:23
thanks for fastest answer...it solves my problem.. – Aniket Jan 23 at 10:28
3  
@Aniket you are welcome :),and dont forget to accept the answer :) – PermGenError Jan 23 at 10:29
5  
But take note of the comment above about that number being interpreted as octal! – demaniak Jan 23 at 10:32
@demaniak yepp, just noticed from Rohit Jain's comment.. :) – PermGenError Jan 23 at 10:33

You should add an L suffix to your number. Also, are you sure you want to express your number in octal?

share|improve this answer

Use L to show that it is a long type like

long fixedKey=0123456701234567L; 
share|improve this answer

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.