티스토리 뷰
● 도입
- BiConsumer Interface는 BiFunction Interface와 같이 2개의 input parameter를 가진다.
[BiConsumer]
@FunctionalInterface
public interface BiConsumer<T, U> {
void accept(T t, U u);
}
[Consumer]
@FunctionalInterface
public interface Consumer<T> {
void accept(T t); // Consumer는 받기만 하고 아무것도 return 하지 않는다.
}
[BiFunction]
@FunctionalInterface
public interface BiFunction<T, U, R> {
R apply(T t, U u); // 추상 메소드
}
● 실습
1.
package com.fastcampus.functionalprogramming.chapter4;
import java.util.Arrays;
import java.util.List;
import java.util.function.BiConsumer;
public class Chapter4Section3 {
public static void main(String[] args) {
BiConsumer<Integer, Double> biConsumer =
(index, input) -> System.out.println("processing " + input + " at index " + index);
List<Double> doubleInputs = Arrays.asList(10.0, 20.0, 30.0);
process(doubleInputs, biConsumer);
}
public static <T>void process(List<T> inputs, BiConsumer<Integer, T> processor) {
// BiConsumer<Integer, T> --> Integer는 index 개념으로 사용할 것이기에 자료형을 명시했다.
for (int i = 0; i < inputs.size(); i++) {
processor.accept(i, inputs.get(i));
}
}
}
2.
package com.fastcampus.functionalprogramming.chapter4;
import java.util.Arrays;
import java.util.List;
import java.util.function.BiConsumer;
public class Chapter4Section3 {
public static void main(String[] args) {
List<String> stringInputs = Arrays.asList("apple", "kiwi", "banana");
BiConsumer<Integer, String> biConsumer2 =
(index, input) -> System.out.println("index : " + index + " input : " + input);
process2(stringInputs, biConsumer2);
List<Boolean> boolInputs = Arrays.asList(true, true ,false);
BiConsumer<Integer, Boolean> biConsumer3 =
(index, input) -> System.out.println("index : " + index + " input : " + input);
process2(boolInputs, biConsumer3);
}
@SuppressWarnings("unchecked")
public static <T, K, U>void process2(List<T> inputs, BiConsumer<Integer, U> processor) {
for (int i = 0; i < inputs.size(); i++) {
processor.accept(i , (U) inputs.get(i));
}
}
}
'Backend > Java8' 카테고리의 다른 글
#10 Comparator : 비교를 위한 인터페이스 (1) | 2022.09.22 |
---|---|
#9 Predicate (1) | 2022.09.21 |
#7 Consumer : Supplier와 정반대 (0) | 2022.09.19 |
#6 Supplier (0) | 2022.09.18 |
#5 @FunctionalInterface / input을 3개 받는 interface 만들기 (1) | 2022.09.17 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- OS
- Spring Boot
- SpringBoot
- Phaser
- 알고리즘
- db
- 프로그래머스
- MySQL
- Phaser3
- 코딩테스트
- API
- 메모리
- nosql
- git
- Stream
- 빅데이터 분석기사
- 빅데이터
- spring
- Advanced Stream
- DART
- jpa
- 코테
- 프로세스
- MongoDB
- 자료구조
- Java8
- SQL
- 운영체제
- java
- node.js
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함