자바 제네릭스(12) Java Generics: 상위 제한된 와일드카드(Upper Bounded Wildcards)
- JAVA
원문링크
제한없는 와일드카드 Unbounded Wildcards 제한없는 와일드카드 타입은 와일드카드 문자(‘?’)만 사용한것이다. 예를 들면 List<?>와 같다. List<?>의 ?는 List의 ‘알수없는 타입(unkown type)‘이라고 부른다. 아래 두개의 시나리오는 제한없는 와일드카드가 유용한 접근법이다. The unbounded wildcard type is specified using the wildcard character (?), for example, List<?>. This is called a list of unknown type. There are two scenarios where an unbounded wildcard is a useful approach:
Object 클래스에서 제공하는 기능(메서드)을 사용하도록 메서드를 구현할 때.