컬렉션 타입(List,Set 등) 은 컬렉션의 최상위 클래스인 Collection 에 정의된 stream() 메서드를 사용해서 스트림을 생성할 수 있습니다. 그렇기 때문에 Collection으로부터 확장된 하위클래스 List와 Set을 구현한 컬랙션 클래스들은 모두 stream()매서드를 사용해서 스트림을 생성할 수 있습니다. import java.util.*; import java.util.stream.*; public class JgStream3 { public static void main(String[] args) { List list = Arrays.asList(10, 20, 50, 70, 100); Stream stream = list.stream(); stream.forEach(System...