자바 제네릭스(13) Java Generics: 하위 제한 와일드카드(Lower Bounded Wildcards)
- JAVA
원문링크
하위 제한 와일드카드 Lower Bounded Wildcards 상위제한와일드카드장은 특정 타입이나 그 특정타입의 서브타입을 알 수 없을때는 ‘extends’ 키워드를 사용하는 것을 보여줬다. 비슷한 것으로, 하위제한와일드카드는 특정타입이나 그 특정 타입의 슈퍼타입을 제한하고자할때 사용한다. The Upper Bounded Wildcards section shows that an upper bounded wildcard restricts the unknown type to be a specific type or a subtype of that type and is represented using the extends keyword. In a similar way, a lower bounded wildcard restricts the unknown type to be a specific type or a super type of that type.