https://github.com/addleonel/oop
Object-oriented programming (OOP) is a programming paradigm based on the concept of "objects"
https://github.com/addleonel/oop
java javascript oop php programming-languages python3
Last synced: 2 months ago
JSON representation
Object-oriented programming (OOP) is a programming paradigm based on the concept of "objects"
- Host: GitHub
- URL: https://github.com/addleonel/oop
- Owner: addleonel
- Created: 2021-03-18T23:39:53.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-09-07T02:48:20.000Z (almost 5 years ago)
- Last Synced: 2025-08-18T15:52:26.221Z (10 months ago)
- Topics: java, javascript, oop, php, programming-languages, python3
- Language: Python
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## OOP (Object Oriented Programming)

Object Oriented Programming is a programming paradigm based on the concept of "objects", which can contain data and code:
### What does the OOP solve?
- Very long code.
- If something fails, everything is broken.
- Difficult code to maintain.
- Spaghetti code.
### Object-Oriented Paradigm
- Observe problems in the form of objects
- It is made up of four elements:
- **Classes**
- **Attributes**
- **Methods**
- **Objects**
- You have these pillars:
- **Encapsulation**
- **Abstraction**
- **Inheritance**
- **Polymorphism**
### Object-Oriented Programming Languages:
- Java
- PHP
- Python
- JavaScript
- C#
- Ruby
- C++
- Kotlin, [etc](https://en.wikipedia.org/wiki/List_of_object-oriented_programming_languages)