티스토리 뷰
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
- 개발환경
- 프로그래머스
- 경력관리
- Eclipse
- Java
- 오라클 내장 함수
- 제주도 3박4일 일정
- 오라클
- spring
- 소프트웨어공학
- sort algorithm
- Tomcat
- 리눅스 명령어
- 리액트
- 성능분석
- 자바
- Linux 명령어
- 리액트 16
- Collection
- javascript
- 제주도 여행
- 이직
- 프로그래머
- 정렬 알고리즘
- React
- SQL
- 회고
- effective java
- Maven
- 자바스크립트
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함