search

Home  >  Q&A  >  body text

objective-c - swift中的map()方法

为什么执行次数是5times而不是4times

天蓬老师天蓬老师2821 days ago420

reply all(1)I'll reply

  • PHP中文网

    PHP中文网2017-05-02 09:21:57

    What debugging tool are you using? I changed the map’s closure:

    var arr = [1,2,3,4]
    let mapArr = arr.map({
      (i: Int) -> Int in
        print("a")
        return i * 2
    })

    Only 4 'a's are output.
    My platform is: Swift on Ubuntu.

    reply
    0
  • Cancelreply