Groovy合并两个列表?

时间:2010-04-08 07:13:43

标签: list groovy merge

我有两个清单:

listA: 
[[Name: mr good, note: good,rating:9], [Name: mr bad, note: bad, rating:5]] 

listB: 
[[Name: mr good, note: good,score:77], [Name: mr bad, note: bad, score:12]]

我想得到这个

listC:
[[Name: mr good, note: good,, rating:9, score:77], [Name: mr bad, note: bad, rating:5,score:12]] 

我怎么能这样做?

感谢。

3 个答案:

答案 0 :(得分:4)

收集listA中的所有元素,并在listB中找到elementA equivilient。从listB中删除它,并返回组合元素。

如果我们说你的结构如上所述,我可能会这样做:

def listC = listA.collect( { elementA ->
    elementB = listB.find { it.Name == elementA.Name }

    // Remove matched element from listB
    listB.remove(elementB)
    // if elementB == null, I use safe reference and elvis-operator
    // This map is the next element in the collect
    [
        Name: it.Name,
        note: "${it.note} ${elementB?.note :? ''}", // Perhaps combine the two notes?
        rating: it.rating?:0 + elementB?.rating ?: 0, // Perhaps add the ratings?
        score: it.score?:0 + elementB?.score ?: 0 // Perhaps add the scores?
    ] // Combine elementA + elementB anyway you like
}

// Take unmatched elements in listB and add them to listC
listC += listB 

答案 1 :(得分:0)

问题的主题有点笼统,所以如果有人在这里寻找“如何将两个列表合并到groovy中的地图中”,我会回答一个更简单的问题。

def keys = "key1\nkey2\nkey3"
def values = "value1,value2,value3"
keys = keys.split("\n")
values = values.split(",")
def map = [:]
keys.eachWithIndex() {param,i -> map[keys[i]] = values[i] }
print map

答案 2 :(得分:0)

import groovy.util.logging.Slf4j
import org.testng.annotations.Test

@Test
@Slf4j
class ExploreMergeListsOfMaps{
    final def listA = [[Name: 'mr good', note: 'good',rating:9], [Name: 'mr bad', note: 'bad',rating:5]]
    final def listB = [[Name: 'mr good', note: 'good',score:77], [Name: 'mr bad', note: 'bad', score:12]]

    void tryGroupBy() {
        def listIn = listA + listB
        def grouped = listIn.groupBy { item -> item.Name }
        def answer = grouped.inject([], { candidate, item -> candidate += mergeMapkeys( item.value )})
        log.debug(answer.dump())
    }

    private def mergeMapkeys( List maps ) {
        def ret =  maps.inject([:],{ mergedMap , map -> mergedMap << map })
        ret
    }
}