Add resource about OOP (#8597)
* Update oop-basics.md add - a article for OOP (Introduction) add - a video for OOP (Simplified) * Update src/data/roadmaps/datastructures-and-algorithms/content/programming-fundamentals/oop-basics.md --------- Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>feat/create-new-course
parent
a4c221505c
commit
8973031252
1 changed files with 5 additions and 1 deletions
@ -1,3 +1,7 @@ |
||||
# OOP Basics |
||||
|
||||
Object-oriented programming (OOP) is a programming paradigm that uses "objects" to design applications and software. In OOP, each object is an instance of a class. A class defines the properties (often known as attributes or fields) and methods (actions) that are common to all objects of a certain kind. A key principle of OOP is the ability to hide certain parts of the objects’ data from the outside, a concept known as encapsulation. Other key principles are inheritance, a way to form new classes using classes that have already been defined, and polymorphism, the concept of designing objects to share behaviors and being able to override shared behaviors with specifics. |
||||
|
||||
Visit the following resources to learn more: |
||||
|
||||
- [@video@Object-Oriented Programming (Simplified)](https://youtu.be/pTB0EiLXUC8?si=I8rV2K5fhpoqmixX) |
||||
|
Loading…
Reference in new issue