Tagged Questions

13
votes
2answers
569 views

Can I customize syntax highlighting in Eclipse to show octal literals differently?

I think octal literals are Very Dangerous Things™, and I'd like them to be glaringly obvious whenever I read source codes. There must be a way to do this in Eclipse, right? So it looks like ...
10
votes
3answers
976 views

Java int division confusing me

I am doing very simple int division and I am getting odd results. This code prints 2 as expected: public static void main(String[] args) { int i = 200; int hundNum = i / 100; ...
2
votes
5answers
139 views

long value with 0 on left

Why this behavior happens? long value = 123450; System.out.println("value: " + value); value: 123450   long value = 0123450; // ^ System.out.println("value: " + value); value: ...
1
vote
5answers
646 views

09 is not recognized where as 9 is recognized

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 ...
0
votes
4answers
65 views

How do I parse non-integer octals in Java?

This may not be possible, but I figured it can't hurt to ask. I have a program that needs to convert non-integer decimals into octal notation. From what I can tell, Java can only handle integer octals ...