Java 8에서 도입된 BiPredicate의 기본적인 사용 방법 및 예제에 대해서 알아보겠습니다.
1. BiPredicate
BiPredicate는 2개의 인자를 받고 boolean을 리턴하는 함수형 인터페이스입니다.
public interface BiPredicate<T, U> {
/**
* Evaluates this predicate on the given arguments.
*
* @param t the first input argument
* @param u the second input argument
* @return {@code true} if the input arguments match the predicate,
* otherwise {@code false}
*/
boolean test(T t, U u);
....
}
2. BiPredicate의 구현 방법 및 예제
BiPredicate 객체는 Lambda로 구현할 수 있습니다.
test()
호출 시 인자 2개를 전달하면 구현된 내용이 수행되며 boolean이 리턴됩니다.
import java.util.function.BiPredicate;
public class BiPredicateExample1 {
public static void main(String[] args) {
BiPredicate<Integer, Integer> biPredicate = (n1, n2) -> n1 > n2;
boolean result = biPredicate.test(10, 100);
System.out.println(result);
}
}
Output:
false
3. and()로 다수의 BiPredicate 연산
BiPredicate.and()
는 BiPredicate들을 연결하는(Chain) 메소드입니다. BiPredicate들의 결과들을 AND 연산하고 그 결과를 리턴합니다.
아래 예제에서 biPredicate1.and(biPredicate2).test(11, 10)
는 biPredicate1과 biPredicate2가 모두 true일 때 true가 리턴됩니다. 둘 중 하나라도 false라면 false가 리턴됩니다.
import java.util.function.BiPredicate;
public class BiPredicateExample2 {
public static void main(String[] args) {
BiPredicate<Integer, Integer> biPredicate1 = (n1, n2) -> n1 > n2;
BiPredicate<Integer, Integer> biPredicate2 = (n1, n2) -> n1 * n2 > 100;
boolean result = biPredicate1.and(biPredicate2).test(11, 10);
System.out.println(result);
}
}
Output:
true
4. or()로 다수의 BiPredicate 연산
or()
는 and()
처럼 BiPredicate들을 연결하는 메소드입니다. 하지만 or()
는 BiPredicate들의 OR 연산에 대한 결과를 리턴합니다.
아래 예제에서 biPredicate1.or(biPredicate2).test(10, 9)
는 biPredicate1, biPredicate2 중에 하나라도 True가 되면 True를 리턴합니다.
import java.util.function.BiPredicate;
public class BiPredicateExample3 {
public static void main(String[] args) {
BiPredicate<Integer, Integer> biPredicate1 = (n1, n2) -> n1 > n2;
BiPredicate<Integer, Integer> biPredicate2 = (n1, n2) -> n1 * n2 > 100;
boolean result = biPredicate1.or(biPredicate2).test(10, 9);
System.out.println(result);
result = biPredicate1.or(biPredicate2).test(9, 10);
System.out.println(result);
}
}
Output:
true
false
5. negate()로 다수의 BiPredicate 연산
negate()
는 BiPredicate가 리턴하는 값과 반대되는 값을 리턴하는 Predicate를 리턴합니다.
논리연산자의 NOT이 BiPredicate 앞에 붙는다고 생각할 수 있습니다. 즉, 논리적으로 반대되는 BiPredicate를 만들 때 사용할 수 있습니다.
import java.util.function.BiPredicate;
public class BiPredicateExample4 {
public static void main(String[] args) {
BiPredicate<Integer, Integer> biPredicate1 = (n1, n2) -> n1 > n2;
BiPredicate<Integer, Integer> biPredicate2 = biPredicate1.negate();
boolean result = biPredicate1.test(10, 9);
System.out.println(result);
result = biPredicate2.test(10, 9);
System.out.println(result);
}
}
Output:
true
false
Related Posts
- Java - Unsupported class file major version 61 에러
- Java - String.matches()로 문자열 패턴 확인 및 다양한 예제 소개
- Java - 문자열 공백제거 (trim, replace)
- Java - replace()와 replaceAll()의 차이점
- Java - ArrayList 초기화, 4가지 방법
- Java - 배열 정렬(Sorting) (오름차순, 내림차순)
- Java - 문자열(String)을 비교하는 방법 (==, equals, compare)
- Java - StringBuilder 사용 방법, 예제
- Java - 로그 출력, 파일 저장 방법 (Logger 라이브러리)
- Java IllegalArgumentException 의미, 발생 이유
- Java - NullPointerException 원인, 해결 방법
- Seleninum의 ConnectionFailedException: Unable to establish websocket connection 해결
- Java - compareTo(), 객체 크기 비교
- Java - BufferedWriter로 파일 쓰기
- Java - BufferedReader로 파일 읽기
- Java charAt() 함수 알아보기
- Java - BigInteger 범위, 비교, 연산, 형변환
- Java contains()로 문자(대소문자 X) 포함 확인
- Java - Set(HashSet)를 배열로 변환
- Java - 문자열 첫번째 문자, 마지막 문자 확인
- Java - 문자열 한글자씩 자르기
- Java - 문자열 단어 개수 가져오기
- Java - 1초마다 반복 실행
- Java - 배열을 Set(HashSet)로 변환
- Java - 여러 Set(HashSet) 합치기
- Java - 명령행 인자 입력 받기
- Java - 리스트 역순으로 순회, 3가지 방법
- Java - 특정 조건으로 리스트 필터링, 3가지 방법
- Java - HashMap 모든 요소들의 합계, 평균 계산
- Java - 특정 조건으로 HashMap 필터링
- Java - 싱글톤(Singleton) 패턴 구현
- Java - 숫자 왼쪽에 0으로 채우기
- Java - String 배열 초기화 방법
- Java - 정렬된 순서로 Map(HashMap) 순회
- Java - HashMap에서 key, value 가져오기