Stream활용 예시
// 빈공간에 우클릭 -> source -> generate... (ex. 생성자를 불러오려면 constructor겠지) // class Student, StudentEntity의 기본생성자, full생성자, setter, getter가 모두 정리돼어있다고 가정 (블로그올리기엔 너무 크당!) List list = new ArrayList(); list.add(new Student("한조", 80, 99)); list.add(new Student("트레", 10, 45)); list.add(new Student("티모", 8, 50)); list.add(new Student("다리우스", 73, 100)); list.add(new Student("스웨인", 45, 74)); list.stream() .fi..