代码之家  ›  专栏  ›  技术社区  ›  7stud

为什么在Xcode Playground中对数组调用map()会产生无关值

  •  -2
  • 7stud  · 技术社区  · 3 月前

    我的代码:

    import UIKit
    
    let arr: [Int] = [1, 2, 3]
    let result = arr.map { x in x + 2 }
    result
    

    以下是Xcode 16.2 Playground显示的结果:

    enter image description here

    第4行的额外5是从哪里来的?

    adsfhasdkfkahjsdflasdhhf asdfasdklfhkasdjhfksadhf 哈萨克斯坦

    1 回复  |  直到 3 月前
        1
  •  2
  •   Sweeper    3 月前

    你可以点击结果旁边的矩形来展开它。它实际上是两个结果挤成一行。

    enter image description here

    通过悬停在每个 那些 方块,代码的部分被突出显示,以指示结果所指的内容。“[3,4,5]”突出显示了中的单词“result” let result = ...

    enter image description here

    以及“5”亮点 x + 2 .

    enter image description here

    这是的价值 x+2 这个 最后的 是时候对其进行评估了。查看其他值 x+2 ,点击“5”旁边的方块,它将显示一个图表,显示 x+2 随着时间的推移。通过单击图表中的一个点,您可以读取其值。

    enter image description here