In the following inline conditionals, one might expect an integer and a double to be printed, respectively:
System.out.println(true ? 0 : 0.0);
System.out.println(false ? 0 : 0.0);
System.out.println(true ? new Integer(0) : new Double(0.0));
System.out.println(true ? 0 : "");
Instead they are both printed as doubles when occurring together:
0.0
0.0
0.0
0
Why are numbers auto-cast when occurring with other numbers in inline conditionals?
Edit: If this is occurring because System.out.println is overloaded what is the case for:
list.add(true ? 0 : 0.0);
list.add(false ? 0 : 0.0);
list.add(true ? new Integer(0) : new Double(0.0));
list.add(true ? 0 : "");
System.out.println(list);
outputs:
[0.0, 0.0, 0.0, 0]