8
Retornando null como um int permitido com operador ternário, mas não if
Vejamos o código Java simples no seguinte trecho: public class Main { private int temp() { return true ? null : 0; // No compiler error - the compiler allows a return value of null // in a method signature that returns an int. } private int same() { if …