일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 스프링부트
- 자바
- machine-learning
- Winform
- design pattern
- MySQL
- kubernetes
- docker
- 리팩토링
- Python
- 파이썬
- AWS
- VOA
- 쿠버네티스
- Java
- mybatis
- react
- Spring Boot
- Kotlin
- c#
- DataGridView
- 리액트
- git
- 스프링
- 도커
- 코틀린
- 마이바티스
- Spring
- springboot
- github
Archives
- Today
- Total
목록자바 스트림 (1)
보뇨 다이어리
Stream.takeWhile 과 Stream.filter 차이
인터넷에 치면 바로 내용이 나오긴하지만 기억해둘겸 적어봅니다 바로 아래의 코드를 일단 보도록하면.. Stream.of(1,2,3,4,5,6,7,8,9) .filter(n -> n%2 == 0) .forEach(System.out::println); Stream.of(2,4,3,4,5,6,7,8,9) .takeWhile(n -> n%2 == 0) .forEach(System.out::println); filter는 조건에 대해 다 검사하며 참인것만 다음으로 넘어가지만 takeWhile은 조건에 대해 참이 아닐경우 바로 거기서 멈추게 된다 즉 결과는 이런식으로 나오게 된다. 2 4 6 8 2 4
컴퓨터 관련/Java 정보
2019. 12. 26. 07:56