korjun1993 / cs-book-study

책을 읽고 토론하며 컴퓨터과학을 공부하는 공간
0 stars 1 forks source link

지네릭 메서드가 무엇인가요? #38

Open korjun1993 opened 1 year ago

korjun1993 commented 1 year ago
korjun1993 commented 1 year ago

지네릭 메서드가 무엇인가요?

static <T> void sort(List<T> list, Comparator<? super T> c)
korjun1993 commented 1 year ago

지네릭 메서드 사용시 주의할 점

static <T extends Fruit> Juice makeJuice(FruitBox<T> box) {
   String tmp = "";
   for (Fruit f : box.getList()) tmp += f + " ";
   return new Juice(tmp);
}

FruitBox<Apple> appleBox = new FruitBox<Apple>();
Juicer.<Apple>makeJuice(appleBox);