-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
쇼트서킷은 어떻게 작동하는 것일까? #39
Labels
ch4
about chapter 4
Comments
쇼트서킷이란?
if ( 조건문1 && 조건문2 || 조건문3 ) {} 조건문1이 거짓일 경우 다음 결과는 확인해볼 필요 없이 전체 if 문은 결과가 거짓이 된다. 스트림에서도 전체 스트림을 처리하지 않았더라도 결과를 반환할 수 있다.
|
예시 1. limit
결과
예시 2. 스트림 - findFirst()
결과
예시 3. 병렬 스트림 - findFirst()
결과
예시 4. 스트림 - findAny()
결과
예시 5. 병렬 스트림 - findAny()
결과
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
문제
전체 스트림을 처리하지 않아도 결과를 반환할 수 있는 서킷 방식은 실제로 어떻게 작동하는 것일까?
선정 배경
스트림의 결과에만 집중했지, 내부적으로 어떻게 작동되고 있는지에 대해 집중해보진 못했었다.
책에서 간략하게 쇼트서킷을 언급했는데, 이 부분에 대해 찾아보고 실습해본 내용을 공유해보면 좋을 것 같다는 생각이 들어서 선정했다.
관련 챕터
The text was updated successfully, but these errors were encountered: