What is object orientation | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is object orientation

2nd Apr 2019, 12:52 PM
micheal
4 Answers
+ 10
C++ is a compiled language, an upward compatible superset of C and an (incompatible) predecessor to Java. C++ compiles C programs but adds object oriented (OO) features (classes, inheritance, polymorphism), templates (generic functions and classes), function and operator overloading, namespaces (packages), exception handling, a library of standard data structures (string, vector, map, etc.) and formatted text I/O (istream, ostream).
2nd Apr 2019, 2:33 PM
Danijel Ivanović
Danijel Ivanović - avatar
+ 8
OOP is a programming language paradigm that uses objects and classes as its core components, allowing the programmer to think in terms of real-life objects. This makes the code cleaner, reusable, maintainable and scalable.
2nd Apr 2019, 2:25 PM
Danijel Ivanović
Danijel Ivanović - avatar
+ 1
Here are some OOP definitions in different language courses https://www.sololearn.com/learn/CPlusPlus/1709/ https://www.sololearn.com/learn/Java/2151/
2nd Apr 2019, 12:54 PM
Seniru
Seniru - avatar