+ 1
What are object oriented language
which is the easiest and good object oriented language.
3 Antworten
+ 5
Object-Oriented Programming (OOP) language treated things as Objects to adapt to and solve real life problems.
OOP language includes C++ and Java.
In OOP, things are treated as Objects that have attributes and behaviors (methods). For example, a car is treated as an Object which have attributes like numberOfTyres (integer), oilTankVolume (double), traveledDistance (double), and also behaviors like drive(), reverse(), turnRight(), turnLeft(), honk(). Sometime the behavior is used to change the value of attributes like drive () will increase the traveledDistance (double).
+ 5
There is never an easier or better language, it all depends on the project you intend to do. Use the language that is most suitable and suit the project.
0
thanks broo