Java
Stream 생성하기 - 배열/난수/정수/람다식/파일/empty
스트림 만들기 스트림 생성 중간연산(0~N) 최종연산(0~1) 스트림 생성 ✔ Collection 인터페이스의 Stream()으로 컬렉션을 스트림으로 변환 Stream stream() //Collection 인터페이스의 메서드 List list = Arrays.asList(1,2,3,4,5); Stream intStream = list.stream(); //List를 스트림으로 변환 //스트림의 모든 요소를 출력 intStream.forEach(System.out::Print); //forEach() - 최종연산 //12345 intStream.forEach(System.out::Print); //error. 스트림이 이미 위에서 닫혔음.(stream은 1회용) 참고 : 최종 연산은 한번 수행하고 나면 ..
2023. 2. 6. 15:19