티스토리 뷰
@FunctionalInterface
public interface Supplier<T> {
T get(); // input 없이 return 값만 가지는 함수
}
package com.fastcampus.functionalprogramming.chapter5;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.function.Supplier;
public class Chapter5Section4 {
public static void main(String[] args) {
// 1.
printRandomDoubles(Math::random ,5);
// 2.
List<String> names = new ArrayList<>();
names.add("Bob");
names.add("Charlie");
names.add("Alice");
System.out.println(names);
Collections.sort(names, String::compareTo);
System.out.println(names);
}
public static void printRandomDoubles(Supplier<Double> randomSupplier, int count) {
for (int i = 0; i < count; i++) {
System.out.println(randomSupplier.get());
}
}
}
'Backend > Java8' 카테고리의 다른 글
#16 Stream - Filter (0) | 2022.10.05 |
---|---|
#15 Stream이란? / Stream 만들어보기 (1) | 2022.10.04 |
#13 Method Reference - Constructor Reference (0) | 2022.10.02 |
#12 Method Reference2 (0) | 2022.09.24 |
#11 Method Reference - 기존에 만들어놓은 Method를 지정하는 방법 (0) | 2022.09.23 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Java8
- Phaser3
- 알고리즘
- 자료구조
- 프로그래머스
- SpringBoot
- spring
- SQL
- 빅데이터 분석기사
- Spring Boot
- API
- jpa
- nosql
- 운영체제
- Phaser
- OS
- 빅데이터
- db
- Stream
- MongoDB
- 프로세스
- 코딩테스트
- MySQL
- git
- node.js
- 메모리
- Advanced Stream
- DART
- 코테
- 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 |
글 보관함