You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
enumPasswordError:Error{case obvious
}func checkPassword(_ password:String)throws->Bool{if password =="password"{throwPasswordError.obvious
}returntrue}do{trycheckPassword("password")print("That password is good!")}catch{print("You can't use that password.")}iflet result =try?checkPassword("password"){print("Result was \(result)")}else{print("D'oh.")}try!checkPassword("sekrit")print("OK!")
Failable initializers
letstr1="5"letnum2=Int(str)structPerson{varid:Stringinit?(id:String){if id.count ==9{self.id = id
}else{returnnil}}}
Typecasting
classAnimal{}classFish:Animal{}classDog:Animal{func makeNoise(){print("Woof!")}}letpets=[Fish(),Dog(),Fish(),Dog()]forpetin pets {iflet dog = pet as?Dog{
dog.makeNoise()}}
Optionals summary
Optionals let us represent the absence of a value in a clear and unambiguous way.
Swift won’t let us use optionals without unwrapping them, either using if let or using guard let.
You can force unwrap optionals with an exclamation mark, but if you try to force unwrap nil your code will crash.
Implicitly unwrapped optionals don’t have the safety checks of regular optionals.
You can use nil coalescing to unwrap an optional and provide a default value if there was nothing inside.
Optional chaining lets us write code to manipulate an optional, but if the optional turns out to be empty the code is ignored.
You can use try? to convert a throwing function into an optional return value, or try! to crash if an error is thrown.
If you need your initializer to fail when it’s given bad input, use init?() to make a failable initializer.
You can use typecasting to convert one type of object to another.