Replies: 2 comments
-
자바 8에서 소개된 기능으로 컬렉션을 처리하는데 사용한다.
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Stream API는 Java 8에서 도입된 컬랙션을 다루는 방식이다. 기존 데이터를 다루는 방법의 문제점은 일관되지 않는(Array.sort(), Collections.sort()) 방식이다. 또한 Iterator를 활용하는 방식은 불필요한 변수(for(int i))때문에 가독성이 떨어질 수 있다. Stream API는 이러한 문제점을 해결하기 위해 데이터 접근 방식을 추상화하여 제공하는 기능이다. Stream API는 총 3 단계로 연산이 진행된다.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
.
Beta Was this translation helpful? Give feedback.
All reactions