在Scala中我可以这样写:
val a = List(1,2,3) val b = List(4,5) println(a zip b)
这将产生List((1,4),(2,5))作为输出。
现在我有两个集合在Groovy和想要类似的方式压缩他们。最简单的方法是什么?