Tagged Questions

13
votes
2answers
549 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
945 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
131 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
598 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 ...