티스토리 뷰
public static void main(String[] args) {
List<Student> studentList = new ArrayList<>();
studentList.add(new Student("Pea", 20));
studentList.add(new Student("Ni", 35));
studentList.add(new Student("Pang", 30));
studentList.add(new Student("Tum", 25));
studentList.add(new Student("Sombut", 22));
Student student = Collections.max(studentList, Comparator.comparing(s -> s.getAge()));
System.out.println("The older student is : " + student.getName());
student = Collections.min(studentList, Comparator.comparing(s -> s.getAge()));
System.out.println("The youngest student is : " + student.getName());
}
'프로그래밍 > Back end' 카테고리의 다른 글
[Back end] Spring Boot Mybatis 설정 (0) | 2020.12.10 |
---|---|
[Back end] JWT(JSON Web Token) (0) | 2020.11.05 |
[Back end] Mybatis multiple selectKey (0) | 2020.09.03 |
[Back end] Lombok 개념 및 설치 (0) | 2020.06.30 |
[Back end] logback 한글 깨짐 (0) | 2020.03.18 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
링크
TAG
- SQL
- javascript
- 개발환경
- 이직
- 회고
- 리액트
- Tomcat
- 오라클
- Collection
- 오라클 내장 함수
- sort algorithm
- Maven
- 리액트 16
- 제주도 3박4일 일정
- spring
- 프로그래머스
- Linux 명령어
- Java
- 프로그래머
- 리눅스 명령어
- 정렬 알고리즘
- 경력관리
- 성능분석
- Eclipse
- 자바
- 자바스크립트
- React
- effective java
- 소프트웨어공학
- 제주도 여행
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함