![240](https://upload.jianshu.io/users/upload_avatars/316587/bf98c3b9-aab9-4b04-84be-1915f9313c3f.jpg?imageMogr2/auto-orient/strip|imageView2/1/w/240/h/240)
IP属地:安徽
var thing = "cars"
let closure = { [thing] in
print("I love \\(thing)")
}
thing = "airplanes"
closure()
// Error: print("I love \(thing)")
Swift的面试问题及答案-part1译文:Swift Interview Questions and Answers Swift面试问题及答案 原文链接 : Swift Interview Questions ...