8
삼항 연산자로 허용되지만 if 문이 아닌 정수로 null을 반환
다음 스 니펫에서 간단한 Java 코드를 살펴 보겠습니다. 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 …