84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
例如
func hello() -> Bool { var result = false httpRequestWithCompletionHandler({ is404 in result = is404 }) return result }
这个函数的返回值永远是 false,因为 closure 是异步执行的 怎么在调用这个函数的时候,得到真正的返回值呢? 注: result 必须定义在函数体内,不能定义在函数体外
小伙看你根骨奇佳,潜力无限,来学PHP伐。
var result_cb = function (result) { alert(result) }; function hello(cb) { httpRequestWithCompletionHandler(is404) { cb(is404); } } hello(result_cb);
這樣?
GO lang ? 非同步執行的函數只能透過回呼來獲得值,因此不能直接透過hello傳回bool的方式來獲得結果。
這樣?
GO lang ? 非同步執行的函數只能透過回呼來獲得值,因此不能直接透過hello傳回bool的方式來獲得結果。