Este código funciona bien: - Integer nullInt = null; if (1 <= 3) { Integer secondNull = nullInt; } else { Integer secondNull = -1; } System.out.println("done"); Pero esto arroja una excepción de puntero nulo, mientras que Eclipse advierte que hay necesidad de unboxing automático:...