gpt4 book ai didi

scala - 带大小写和不带大小写的 zipWithIndex

转载 作者:行者123 更新时间:2023-12-02 17:41:12 27 4
gpt4 key购买 nike

下面两段代码如何等效? (案例如何运作)

 list.zipWithIndex.flatMap{ 
rowAndIndex =>
rowAndIndex._1.zipWithIndex
}

list.zipWithIndex.flatMap {
case (rowAndIndex, r) =>
rowAndIndex.zipWithIndex
}

最佳答案

您可能对第二个示例中的错误名称感到困惑。我将其更改为:

list.zipWithIndex.flatMap {
case (row, index) =>
row.zipWithIndex
}

这是以下内容的简短版本:

list.zipWithIndex.flatMap { rowAndIndex => 
rowAndIndex match {
case (row, index) => row.zipWithIndex
}
}

关于scala - 带大小写和不带大小写的 zipWithIndex,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20454405/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com