program tip

컬렉션의 Groovy 맵 방법

radiobox 2020. 11. 25. 07:50
반응형

컬렉션의 Groovy 맵 방법


거기 map그루비의 방법은? 다음 Scala 스 니펫으로 수행하는 것과 같은 작업을 수행하고 싶습니다.

scala> val l = List(1, 2, 3)
l: List[Int] = List(1, 2, 3)

scala> l.map(_ + 1)
res0: List[Int] = List(2, 3, 4)

groovy에는 다음과 같은 메서드가 있습니다 collect.

assert [1, 2, 3].collect { it * 2 } == [2, 4, 6]

http://docs.groovy-lang.org/next/html/documentation/working-with-collections.html#_iterating_on_a_list

참고 URL : https://stackoverflow.com/questions/4734434/groovy-map-method-of-collections

반응형