From aa6e1e1f78f9738fd3558daec873411f83be2973 Mon Sep 17 00:00:00 2001 From: Behnam Yazdanpanahi Date: Fri, 26 Jul 2024 01:18:04 +0330 Subject: [PATCH] update content: object oriented programming (OOP) --- .../04-ObjectOrientedProgramming(OOP).md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/06-ObjectOrientedProgramming/04-ObjectOrientedProgramming(OOP).md b/06-ObjectOrientedProgramming/04-ObjectOrientedProgramming(OOP).md index e3c2088..43e2ce5 100644 --- a/06-ObjectOrientedProgramming/04-ObjectOrientedProgramming(OOP).md +++ b/06-ObjectOrientedProgramming/04-ObjectOrientedProgramming(OOP).md @@ -951,7 +951,7 @@ class Person: While this class is straightforward, each instance consumes memory for the attributes `_name` and `_age`. In large-scale applications, efficient use of attributes and careful design can help minimize memory overhead. -##### 2. Techniques for Minimizing Memory Overhead** +##### 2. Techniques for Minimizing Memory Overhead - **Optimize Attribute Storage:**