vote up 1 vote down star

I am using quartz for schedulling.

TriggerUtils.getDateOf(0,40,18,09,06); it accept 5 parameter. (seconds, minutes, hours, daysOfMonth, month).

When i pass fourth parameter as "09". Eclipse give me error "The literal Octal 09 (digit 9) of type int is out of range ".

But when i pass the fourth parameter as "9" instead of "09", it works.

Can anyone explain me this error?

flag
You realize that the integers 06 and 6 are the same thing, right? – matt b Jun 9 at 13:24
3  
@matt: He's passing a date into the function, and not realizing that a preceding 0 turns it to an octal number. – Eric Jun 9 at 13:25
if i can pass 25, then why not 09. – Shashi Bhushan Jun 9 at 13:32
I think we've all been bitten by that one once or twice. I think in 30 years of programming I've intentionally used octal once (and binary and hexadecimal countless times). Octal's favored states is truly a throwback. – Nosredna Jun 9 at 13:33
1  
@Shashi: 25 is a number. 0 before a number signals that you want to use octal, so you're going into a different numbering system. Only applies to 0 because you normally drop the 0. – Will Eddins Jun 9 at 13:37

5 Answers

vote up 15 vote down check

In java, if you are defining an integer, a leading '0' will denote that you are defining a number in octal

int i = 07; //integer defined as octal
int i = 7; // integer defined as base 10
int i = 0x07; // integer defined as hex
link|flag
I didn't know about "0b". Does that work in C, too? – rascher Jun 9 at 13:43
The 0b prefix doesn't exist yet; it's a possible extension to Java 7. – gustafc Jun 9 at 13:49
Ah, thanks. Fixed. – James Van Huis Jun 9 at 14:16
vote up 2 vote down

10 is how many digits you have, whereas 010 is is what you get if you don't count your thumbs.

link|flag
vote up 11 vote down

When you precede a number with 0 ("09" rather than "9"), then Java (and C and many other languages) interpret the number to be in octal - base-8.

"09" is not a valid number in octal - any single digit can be a maximum of "7" (since in octal, numbers go from 0..7).

link|flag
vote up 10 vote down

Numbers that begin with the zero digit are treated as octal (base 8) literals, and 9 is not a valid octal digit.

link|flag
vote up 16 vote down

There is no 9 in Octal (what you get with a preceding 0). 0-7, only.

link|flag

Your Answer

Get an OpenID
or

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