< Why does Swift have dictionaries as well as arrays? | Why would you want to create an empty collection? > |
Updated for Xcode 14.2
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 Thorough mobile testing hasn’t been efficient testing. With Waldo Sessions, it can be! Test early, test often, test directly in your browser and share the replay with your team.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.