자바 제네릭스(10) 와일드카드 Wildcards
- JAVA
상위 제한된 와일드 카드 Upper Bounded Wildcards 변수에 완화된 제한을 걸고 싶을때 upper bounded wildcard를 사용한다. 예를들면, List<Integer>, List<Double>, List<Number> 타입들에서 동작하는 메서드를 작성할때 upper bounded wildcard를 사용해서 만들수 있다. You can use an upper bounded wildcard to relax the restrictions on a variable. For example, say you want to write a method that works on List, List, and List; you can achieve this by using an upper bounded wildcard.