이펙티브자바 아이템52
-
아이템 52. 다중정의는 신중히 사용하라책/이펙티브자바 2021. 9. 16. 15:33
다중 정의 (Overroading) // 52-1. BAD - 컬렉션 분류기 public class CollectionClassifier { public static String classify(Set s) { return "Set"; } public static String classify(List l) { return "List"; } public static String classify(Collection c) { return "Collection"; } public static void main(String[] args) { Collection[] collections = { new HashSet(), new ArrayList(), new HashMap().values() }; for (Colle..