The Prince George's County Fire Department said the guard was taken to hospital in a critical condition. The FBI said the shooting was related to another incident in Washington DC. The agency did not provide further details on the two incidents, but…
//用if let与guard let实现同一效果,会发现guard降低一个分支 //可以用if var guard var 表示定义的变量能修改值 func test(){ let name:String? = "张三" if let a = name { print(a) }else{ print("李四") } guard let c = name else { print("李四") return } print("c=\(c)…