仅使用以下导入是否合适?
import groovyx.gpars.*
这样我就可以做到:
import groovyx.gpars.*
GParsPool.withPool {
list = 1..10
list.each{print it + 1 + "\n"}
}
代替:
import static groovyx.gpars.GParsPool.withPool
withPool {
list = 1..10
list.each{print it + 1 + "\n"}
}
这样做我就不必import static groovyx.gpars.actor.Actors.actor
单独提及每个导入,就像在这个Hello World Example中一样。