Java 8 람다 목록에서 요소 가져 오기 및 제거 요소의 목록을 감안할 때, 나는 주어진 속성 요소를 싶어 하고 목록에서 제거합니다. 내가 찾은 최고의 솔루션은 다음과 같습니다. ProducerDTO p = producersProcedureActive .stream() .filter(producer -> producer.getPod().equals(pod)) .findFirst() .get(); producersProcedureActive.remove(p); 람다 식에서 get과 remove를 결합 할 수 있습니까? 목록에서 요소를 제거하려면 objectA.removeIf (x-> 조건); 예 : objectA.removeIf (x-> blockedWorkerIds.contains (x)); List ..