null 인수에 대한 메서드 오버로드 매개 변수를 사용하여 다음 세 가지 방법을 추가했습니다. public static void doSomething(Object obj) { System.out.println("Object called"); } public static void doSomething(char[] obj) { System.out.println("Array called"); } public static void doSomething(Integer obj) { System.out.println("Integer called"); } 가 할 때doSomething(null)그 후 컴파일러는 애매한 메서드로 오류를 발생시킵니다.그래서 문제가 되는 건Integer ★★★★★★★★★★★★★★★★★」ch..