Skip to content

Commit 9cd14d1

Browse files
committed
update WhenObjectsAreAlike
1 parent b0a4ec3 commit 9cd14d1

File tree

3 files changed

+78
-23
lines changed

3 files changed

+78
-23
lines changed

notebooks/00-TableOfContents.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"name": "python",
7272
"nbconvert_exporter": "python",
7373
"pygments_lexer": "ipython3",
74-
"version": "3.10.8"
74+
"version": "3.9.13"
7575
}
7676
},
7777
"nbformat": 4,

notebooks/ObjectOrientedDesign.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@
223223
"name": "python",
224224
"nbconvert_exporter": "python",
225225
"pygments_lexer": "ipython3",
226-
"version": "3.10.8"
226+
"version": "3.9.13"
227227
}
228228
},
229229
"nbformat": 4,

notebooks/WhenObjectsAreAlike.ipynb

+76-21
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"- in programming, duplicate code is considered evil\n",
1111
" - difficult to debug and maintain code\n",
1212
"- there are many ways to merge pieces of code or objects that have similar functions\n",
13-
"- the concept of inheritance introduced earlier is an important one that allows us to create **is-a** relationship between two or more classes\n",
14-
" - inherit common code from base/superclass and extend it with specific details in each subclass"
13+
"- the concept of inheritance allows us to create **is-a** relationship between two or more classes\n",
14+
" - inherit common code from base/superclass and extend/override it with specific details in each subclass (aka Polymorphism)"
1515
]
1616
},
1717
{
@@ -23,7 +23,9 @@
2323
"\n",
2424
"- technically every class inherits from the built-in *object* class\n",
2525
"- generally, we extend the base/parent/super class and customize/add more functionalities to the derived/child class\n",
26-
"- child class inherits methods and attributes defined in parent classes"
26+
"- child class inherits methods and attributes defined in parent classes\n",
27+
"\n",
28+
"![](resources/UML-inheritance.png)"
2729
]
2830
},
2931
{
@@ -160,8 +162,8 @@
160162
"metadata": {},
161163
"outputs": [],
162164
"source": [
163-
"# each object all has access to class variable\n",
164-
"# not common notation\n",
165+
"# each object has access to class variable\n",
166+
"# not common notation; confusing as if all_contacts is an instance variable\n",
165167
"pprint(c.all_contacts)"
166168
]
167169
},
@@ -172,6 +174,7 @@
172174
"metadata": {},
173175
"outputs": [],
174176
"source": [
177+
"# better notation\n",
175178
"pprint(Contact.all_contacts)"
176179
]
177180
},
@@ -1047,7 +1050,7 @@
10471050
},
10481051
{
10491052
"cell_type": "code",
1050-
"execution_count": 161,
1053+
"execution_count": 6,
10511054
"id": "cb72de1f",
10521055
"metadata": {},
10531056
"outputs": [],
@@ -1083,7 +1086,7 @@
10831086
},
10841087
{
10851088
"cell_type": "code",
1086-
"execution_count": 162,
1089+
"execution_count": 7,
10871090
"id": "652387cb",
10881091
"metadata": {},
10891092
"outputs": [
@@ -1107,7 +1110,7 @@
11071110
},
11081111
{
11091112
"cell_type": "code",
1110-
"execution_count": 163,
1113+
"execution_count": 8,
11111114
"id": "86ef7003",
11121115
"metadata": {},
11131116
"outputs": [
@@ -1138,7 +1141,7 @@
11381141
},
11391142
{
11401143
"cell_type": "code",
1141-
"execution_count": 164,
1144+
"execution_count": 9,
11421145
"id": "8be64c14",
11431146
"metadata": {},
11441147
"outputs": [],
@@ -1173,7 +1176,7 @@
11731176
},
11741177
{
11751178
"cell_type": "code",
1176-
"execution_count": 165,
1179+
"execution_count": 10,
11771180
"id": "ee517faa",
11781181
"metadata": {},
11791182
"outputs": [
@@ -1195,7 +1198,7 @@
11951198
},
11961199
{
11971200
"cell_type": "code",
1198-
"execution_count": 166,
1201+
"execution_count": 11,
11991202
"id": "74dce83f",
12001203
"metadata": {},
12011204
"outputs": [
@@ -1226,7 +1229,7 @@
12261229
},
12271230
{
12281231
"cell_type": "code",
1229-
"execution_count": 167,
1232+
"execution_count": 12,
12301233
"id": "a7271b87",
12311234
"metadata": {},
12321235
"outputs": [],
@@ -1236,7 +1239,7 @@
12361239
},
12371240
{
12381241
"cell_type": "code",
1239-
"execution_count": 168,
1242+
"execution_count": 13,
12401243
"id": "d1381eba",
12411244
"metadata": {},
12421245
"outputs": [
@@ -1258,10 +1261,22 @@
12581261
},
12591262
{
12601263
"cell_type": "code",
1261-
"execution_count": null,
1264+
"execution_count": 14,
12621265
"id": "98b3a4c6",
12631266
"metadata": {},
1264-
"outputs": [],
1267+
"outputs": [
1268+
{
1269+
"name": "stdout",
1270+
"output_type": "stream",
1271+
"text": [
1272+
"(<class '__main__.Subclass_S'>,\n",
1273+
" <class '__main__.RightSubclass_S'>,\n",
1274+
" <class '__main__.LeftSubclass_S'>,\n",
1275+
" <class '__main__.BaseClass_S'>,\n",
1276+
" <class 'object'>)\n"
1277+
]
1278+
}
1279+
],
12651280
"source": [
12661281
"pprint(Subclass_S.__mro__)"
12671282
]
@@ -1457,7 +1472,7 @@
14571472
"- duck-test: \"If it walks like a duck and it quacks like a duck, then it must be a duck\"\n",
14581473
"- to determine whether a function can be applied to a new type, we apply Python's fundamental rule of polymorphism, called duck typing rule: if all of the operations inside the function can be applied to the type, the function can be applied to the type\n",
14591474
"- it allows us to use *any* object that provides the required behavior without forcing it to be a subclass\n",
1460-
"- `FlacFile` doesn't inherit from AudioFile but it can be interacted with within Python using the exact same interface!"
1475+
"- `FlacFile` doesn't inherit from AudioFile but it can be interacted with using the exact same interface!"
14611476
]
14621477
},
14631478
{
@@ -1506,7 +1521,8 @@
15061521
"## Mixin Design Pattern\n",
15071522
"\n",
15081523
"- **Mixin** is the simplest and most useful form of multiple inheritance\n",
1509-
"- a mixin class definition is not intended to exist on its own but is meant to be inherited by some other class\n",
1524+
"- a mixin class is not meant to be instantiated, but is meant to be inherited by some other class\n",
1525+
" - it is mixed in with other classes to extend their behavior\n",
15101526
"- the goal is to extend and provide extra functionality without worrying about the correctness of \"is-a\" relationship\n",
15111527
"- mixins are sometimes described as being \"including\" or \"using\" rather than \"inheriting\"\n",
15121528
"- mixins encourage code reuse and can be used to avoid the inheritance ambiguity that multiple inheritance can cause (**diamond problem**)\n",
@@ -1516,6 +1532,43 @@
15161532
"- Employee and Address are NOT AsDictionaryMixin, but both of them \"use\" AsDictionaryMixin mixin"
15171533
]
15181534
},
1535+
{
1536+
"cell_type": "code",
1537+
"execution_count": 15,
1538+
"id": "e8107f89",
1539+
"metadata": {},
1540+
"outputs": [
1541+
{
1542+
"name": "stdout",
1543+
"output_type": "stream",
1544+
"text": [
1545+
"[LOG]: Dog is barking\n",
1546+
"Woof!\n"
1547+
]
1548+
}
1549+
],
1550+
"source": [
1551+
"# Define a Mixin\n",
1552+
"class LoggingMixin:\n",
1553+
" def log(self, message):\n",
1554+
" print(f\"[LOG]: {message}\")\n",
1555+
"\n",
1556+
"# Define a Base Class\n",
1557+
"class Animal:\n",
1558+
" def speak(self):\n",
1559+
" pass\n",
1560+
"\n",
1561+
"# Use the Mixin\n",
1562+
"class Dog(Animal, LoggingMixin):\n",
1563+
" def speak(self):\n",
1564+
" self.log(\"Dog is barking\")\n",
1565+
" return \"Woof!\"\n",
1566+
"\n",
1567+
"# Usage\n",
1568+
"dog = Dog()\n",
1569+
"print(dog.speak()) # Output: [LOG]: Dog is barking \\n Woof!"
1570+
]
1571+
},
15191572
{
15201573
"cell_type": "code",
15211574
"execution_count": 180,
@@ -1775,6 +1828,8 @@
17751828
"### L: Liskov Substitution\n",
17761829
"- named after Barbara Liskov creator of CLU programming language\n",
17771830
"- any subclass can be substituted for its superclass\n",
1831+
" - any code that uses superclass can be replaced with it's subclass without breaking any code!\n",
1832+
" - the inverse is not true!\n",
17781833
"- the essence of polymorphism\n",
17791834
"\n",
17801835
"### I: Interface Segregation\n",
@@ -1796,10 +1851,10 @@
17961851
"- \"You wanted a banana but what you got was a gorilla holding the banana and the entire jungle\" - Joe Armstrong\n",
17971852
"- inheritance is a powerful tool but it can be misused\n",
17981853
"- alternatives may be better to avoid the inheritance tax:\n",
1799-
" - interfaes and protocols\n",
1854+
" - interfaces and protocols\n",
18001855
" - delegation\n",
1801-
" - mixins and traits\n",
1802-
"- interfaces and protocols give us prolymorphism without inheritance\n",
1856+
" - mixins\n",
1857+
"- interfaces and protocols give us polymorphism without inheritance\n",
18031858
"- delegation is a way to use composition instead of inheritance\n",
18041859
"- delegate to services - Has-A relationship Trumps Is-A relationship\n",
18051860
"- use mixins to share code and functionality\n"
@@ -1846,7 +1901,7 @@
18461901
"name": "python",
18471902
"nbconvert_exporter": "python",
18481903
"pygments_lexer": "ipython3",
1849-
"version": "3.10.8"
1904+
"version": "3.9.13"
18501905
},
18511906
"vscode": {
18521907
"interpreter": {

0 commit comments

Comments
 (0)