728x90
  1. 컬렉션 정렬하기 Lambda를 사용하여 컬렉션을 정렬하는 것은 간단하고 효율적입니다. Comparator 인터페이스를 구현하고 람다 표현식으로 전달하여 정렬 기준을 지정할 수 있습니다.
List<String> names = Arrays.asList("John", "Alice", "Bob", "Mary");
names.sort((name1, name2) -> name1.compareTo(name2));
  1. 필터링 Predicate 인터페이스를 사용하여 컬렉션의 요소를 필터링할 수 있습니다. 람다 표현식을 전달하여 원하는 조건을 지정할 수 있습니다.
List<Integer> numbers = Arrays.asList(1, 2, 3, 4, 5);
List<Integer> evenNumbers = numbers.stream()
                                   .filter(number -> number % 2 == 0)
                                   .collect(Collectors.toList());
  1. 맵핑 Function 인터페이스를 사용하여 컬렉션의 요소를 변환할 수 있습니다. 람다 표현식을 전달하여 변환 로직을 작성할 수 있습니다.
List<String> names = Arrays.asList("John", "Alice", "Bob", "Mary");
List<Integer> nameLengths = names.stream()
                                 .map(name -> name.length())
                                 .collect(Collectors.toList());
  1. 리소스 관리 AutoCloseable 인터페이스를 구현한 리소스를 사용할 때, try-with-resources 문과 함께 람다 표현식을 사용하여 리소스를 자동으로 닫을 수 있습니다.
try (InputStream in = new FileInputStream("input.txt")) {
    // 파일 읽기 작업 수행
} catch (IOException e) {
    // 예외 처리
}
  1. 스레드 생성 Runnable 인터페이스를 구현한 람다 표현식을 사용하여 새로운 스레드를 생성할 수 있습니다.
Thread thread = new Thread(() -> {
    // 스레드에서 실행할 작업
});
thread.start();
  1. 예외 처리 함수형 인터페이스의 추상 메서드에서 예외가 발생할 수 있는 경우, 람다 표현식에서 예외를 처리할 수 있습니다.
Function<Integer, Integer> divideByZero = x -> {
    try {
        return x / 0;
    } catch (ArithmeticException e) {
        return 0;
    }
};
  1. 조건부 실행 람다 표현식을 사용하여 조건에 따라 코드 블록을 실행할 수 있습니다.
Consumer<String> printIfNotEmpty = text -> {
    if (!text.isEmpty()) {
        System.out.println(text);
    }
};
  1. 함수 조합 Function 인터페이스를 사용하여 함수를 조합할 수 있습니다. andThen() 메서드와 compose() 메서드를 사용하여 람다 표현식을 조합할 수 있습니다.
Function<Integer, Integer> addTwo = x -> x + 2;
Function<Integer, Integer> multiplyByThree = x -> x * 3;

Function<Integer, Integer> addTwoAndMultiplyByThree = addTwo.andThen(multiplyByThree);
int result = addTwoAndMultiplyByThree.apply(5); // 결과: 21
  1. 값 반환 람다 표현식을 사용하여 값을 반환할 수 있습니다. 함수형 인터페이스의 메서드에 맞게 람다 표현식을 작성하고 값을 반환할 수 있습니다.
Supplier<String> helloSupplier = () -> "Hello, World!";
String message = helloSupplier.get(); // 결과: "Hello, World!"
  1. 비동기 처리 CompletableFuture를 사용하여 비동기 작업을 처리할 수 있습니다. 람다 표현식을 사용하여 작업을 정의하고 CompletableFuture의 메서드를 호출하여 비동기적으로 작업을 실행할 수 있습니다.
CompletableFuture<String> future = CompletableFuture.supplyAsync(() -> "Hello, World!");
future.thenAccept(message -> System.out.println(message)); // 결과: "Hello, World!"

내저장소 바로가기 luxury515

'Back-end > 기타' 카테고리의 다른 글

람다 10가지 (고급편)  (1) 2023.05.16
람다 10가지 (초급편)  (0) 2023.05.16
10가지 Lambda  (0) 2023.05.16
시간 전역처리를 어노테이션 하나로 끝내자!  (0) 2023.04.17
RequestBodyAdvice 와 ResponseBodyAdvice 사용법  (0) 2023.04.17

+ Recent posts