0
0
Swiftprogramming~10 mins

Identity comparison (===) in Swift - Step-by-Step Execution

Choose your learning style9 modes available
Concept Flow - Identity comparison (===)
Create Object A
Create Object B
Compare A === B?
YesSame Object
No
Different Objects
This flow shows creating two objects and then checking if they are exactly the same object in memory using ===.
Execution Sample
Swift
class Person {}
let p1 = Person()
let p2 = p1
let p3 = Person()
print(p1 === p2)
print(p1 === p3)
This code creates two Person objects and compares their identity using ===.
Execution Table
StepActionEvaluationResult
1Create p1 as new Person()p1 points to Object1p1 -> Object1
2Assign p2 = p1p2 points to same Object1 as p1p2 -> Object1
3Create p3 as new Person()p3 points to Object2p3 -> Object2
4Evaluate p1 === p2Are p1 and p2 same object?true
5Evaluate p1 === p3Are p1 and p3 same object?false
💡 All comparisons done, program ends.
Variable Tracker
VariableStartAfter Step 1After Step 2After Step 3Final
p1nilObject1Object1Object1Object1
p2nilnilObject1Object1Object1
p3nilnilnilObject2Object2
Key Moments - 2 Insights
Why does p1 === p2 return true even though we didn't create a new object for p2?
Because p2 was assigned to p1, both variables point to the exact same object in memory, so identity comparison returns true (see execution_table step 4).
Why does p1 === p3 return false even though p3 is also a Person?
Because p3 is a new object created separately, so p1 and p3 point to different objects in memory, making identity comparison false (see execution_table step 5).
Visual Quiz - 3 Questions
Test your understanding
Look at the execution table, what does p2 point to after step 2?
Anil
BA new Person object different from p1
CThe same object as p1
DAn error
💡 Hint
Check variable_tracker row for p2 after step 2.
At which step does p3 get assigned a new object?
AStep 3
BStep 1
CStep 2
DStep 4
💡 Hint
Look at execution_table step 3 and variable_tracker for p3.
If we changed p2 = p1 to p2 = Person(), what would p1 === p2 return?
Atrue
Bfalse
Cnil
DCompile error
💡 Hint
New object means different identity, see explanation in key_moments.
Concept Snapshot
Identity comparison (===) checks if two variables point to the exact same object in memory.
Use === only with class instances (reference types).
If two variables refer to the same object, === returns true.
If they refer to different objects, even if identical in content, === returns false.
Useful to check object identity, not equality of content.
Full Transcript
This visual execution shows how identity comparison works in Swift using the === operator. We create two Person objects and assign variables p1, p2, and p3. p2 is assigned to p1, so both point to the same object. p3 is a new object. When we compare p1 === p2, it returns true because they are the same object. When we compare p1 === p3, it returns false because they are different objects. The variable tracker shows how variables point to objects step by step. Key moments clarify why assignment copies references, not objects, and why new objects have different identities. The quiz tests understanding of these points. The snapshot summarizes the concept simply.