flatMap() 오류1 IntStream flatMap() 관련 오류 해결 내용 정리 오류 메시지 1. Bad return type in lambda expression: Stream cannot be converted to IntStream 오류 메시지 2. no instance(s) of type variable(s) U exist so that Stream conforms to IntStream rangeClosed(a,b) 로 반환된 IntStream 을 이용하여 피타고라스 수를 추출하는 경우 boxing 을 하지 않는 경우 위와 같은 오류를 발생한다. 내용을 보면 반환되는 U 타입의 인스턴스가 없어서 Stream 를 IntStream 에 맞출 수 없다는 내용이다. IntStream 에 맞춘다는 것은 flatMap 때문에 나온 내용 같다. flatMap 은 여러 map 파이프를 하.. 2022. 12. 1. 이전 1 다음