티스토리 뷰

Backend/Java8

#8 BiConsumer

RadderNepa 2022. 9. 20. 00:01

● 도입

- 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
링크
«   2024/12   »
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
글 보관함