@autoclosure的使用定义一个尾随闭包func logIfTrue(_ predicate: () -> Bool) {
//不要写 predicate,一定要加上()
if predicate()
2019-01-07