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

【字号: 日期:2023-12-06浏览:52作者:雯心

问题描述

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

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

问题解答

回答1:

你用的是什么调试工具?我把map的closure改了一下:

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

只输出了4个 ’a’。我的平台是:Swift on Ubuntu。

相关文章: