< Why does Swift have dictionaries as well as arrays? | Why would you want to create an empty collection? > |
Whenever you read a value from a dictionary, you might get a value back or you might get back nil – there might be no value for that key. Having no value can cause problems in your code, not least because you need to add extra functionality to handle missing values safely, and that’s where dictionary default values come in: they let you provide a backup value to use for when the key you ask for doesn’t exist.
For example, here’s a dictionary that stores the exam results for a student:
let results = [
"english": 100,
"french": 85,
"geography": 75
]
As you can see, they sat three exams and scored 100%, 85%, and 75% for English, French, and Geography. If we wanted to read their history score, how we do it depends on what we want:
So, it’s not like you always need a default value when working with dictionaries, but when you do it’s easy:
let historyResult = results["history", default: 0]
SPONSORED From January 26th to 31st you can join a FREE crash course for iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a senior developer!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.