티스토리 뷰
● 도입
- Stream은 함수형 인터페이스와 함께 java8에서 추가되었다.
- Stream은 함수형 인터페이스를 활용해서 데이터를 간편하게 가공해주는 도구이다.
- Stream은 interface이며 Stream은 Collection 형태의 데이터의 흐름이다.
● 개념
스트림이란?
- "데이터의 흐름을 만들어준다."라는 의미이다.
- 컬렉션(Collection) 형태로 구성된 데이터를 Lambda를 이용해 간결하고 직관적으로 프로세스하게 해준다.
- For, while 등을 이용하던 기존 loop를 대체한다.(Stream을 배우면 For, while을 사용할 일이 없다고 한다.)
- 손쉽게 병렬 처리를 할 수 있게 해준다.
● Stream을 만드는 방법
1. Stream.of() method
package com.fastcampus.functionalprogramming.chapter6;
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.Stream;
public class Chapter6Section1 {
public static void main(String[] args) {
// 1. String type의 Stream을 만들어보자(String을 계속 흘려보내주는 Stream)
Stream<String> nameStream = Stream.of("Alice", "Bob", "Charlie");
/*
* nameStream에서 ("Alice", "Bob", "Charlie") 같은 이름들이 하나씩 졸졸 흘러나오는 것이다.
* -------------------------------------------------------------------------------------
* of method : Stream interface의 static method
* - Stream을 생성하는 가장 기본적인 method
* - of method에 String type의 object들을 원하는 만큼 넣어줄 수 있다.
*/
List<String> names = nameStream.collect(Collectors.toList());
/*
* - Stream을 바로 출력하는 방법은 없다. 따라서 Stream을 List 형태로 바꾼 후 출력해야한다.
* - 'collect(Collectors.toList())'로 인해 Stream 안에 있는 것들이 List에 담겨서 return 된다.
* - nameStream Stream 안에 있는 것들이 하나씩 흘러나와서 names List에 담기는 것이다.
* cf) collect, Collectors 같은건 나중에 배울 것이다.
*/
System.out.println(nameStream);
System.out.println(names);
}
}
2. Array를 이용해 Stream 만들기
package com.fastcampus.functionalprogramming.chapter6;
import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.Stream;
public class Chapter6Section1 {
public static void main(String[] args) {
// 2. Array를 이용해 Stream 만들기
String[] cityArray = new String[] {"Seoul", "Tokyo", "LA"};
// cityArray라는 String type의 array를 stream으로 바꿔보자
// stream() method --> array를 받아서 Stream으로 만들어주는 method
Stream<String> cityStream = Arrays.stream(cityArray); // cityArray Array가 Stream 형태로 바뀐다.
// Stream을 List 형태로 바꾸자
// cityStream Stream 안에 있는 것들이 하나씩 흘러나와서 cityList List에 담기는 것이다.
List<String> cityList = cityStream.collect(Collectors.toList());
System.out.println(cityArray);
System.out.println(cityStream);
System.out.println(cityList);
}
}
3. Set을 이용해 Stream 만들기
- java Collection에는 Collection을 Stream을 바꿔주는 method가 있다. 그게 바로 stream() method이다.
package com.fastcampus.functionalprogramming.chapter6;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;
import java.util.stream.Stream;
public class Chapter6Section1 {
public static void main(String[] args) {
// 3. Set을 이용해 Stream 만들기
// HashSet은 생성시 argument로 Collection을 넣어줄 수 있다.(List를 만들어 넣어주었다.)
Set<Integer> numberSet = new HashSet<Integer>(Arrays.asList(3, 5, 7));
// stream : java Collection에서 Collection을 Stream을 바꿔주는 method
// numberSet.stream()으로 인해 numberSet이 (SET 형태 --> stream 형태)로 바뀌었다.
Stream<Integer> numberStream = numberSet.stream();
// Stream을 List 형태로 바꾸자
// numberStream Stream 안에 있는 것들이 하나씩 흘러나와서 numberList List에 담기는 것이다.
List<Integer> numberList = numberStream.collect(Collectors.toList());
System.out.println(numberSet);
System.out.println(numberStream);
System.out.println(numberList);
}
}
'Backend > Java8' 카테고리의 다른 글
#17 Stream - Map(데이터의 변형) (0) | 2022.10.06 |
---|---|
#16 Stream - Filter (0) | 2022.10.05 |
#14 Method Reference를 이용해 기존 예제를 더 간단하게 (0) | 2022.10.03 |
#13 Method Reference - Constructor Reference (0) | 2022.10.02 |
#12 Method Reference2 (0) | 2022.09.24 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- MySQL
- SQL
- 프로세스
- SpringBoot
- 알고리즘
- 메모리
- API
- Phaser
- 운영체제
- DART
- 자료구조
- Phaser3
- 빅데이터 분석기사
- node.js
- spring
- 프로그래머스
- Spring Boot
- 빅데이터
- MongoDB
- 코딩테스트
- jpa
- nosql
- Java8
- OS
- db
- 코테
- git
- java
- Advanced Stream
- Stream
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함