An open API service indexing awesome lists of open source software.

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"

Awesome Lists containing this project

README

          

## OOP (Object Oriented Programming)
![](https://upload.wikimedia.org/wikipedia/commons/thumb/b/bd/OOP.svg/1280px-OOP.svg.png)

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)