0

我使用了这样的方法:

def compareTables(tb1,tb2){
    if(tb1.rows() != tb2.rows()) return false
    if(tb1.cols() != tb2.cols()) return false
    for(colname in tb1.columnNames()){
        for(row in 0:tb1.rows()){
            if(tb1[colname][row] != tb2[colname][row]) return false
        }
    }    
    return true
}

Buuuuuut ......我真的不喜欢它。它是如此的低效和繁琐。有没有更优雅、更高效的方式来实现呢?

4

1 回答 1

0

每个(eqObj,tb1.values(),tb2.values(),6).all()

于 2019-04-13T04:01:42.513 回答