What is meant by object oriented language? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

What is meant by object oriented language?

how c and c++ and Java is different from each other...

12th Mar 2017, 5:12 AM
jack_sparrow
jack_sparrow - avatar
2 Answers
+ 3
Object oriented is paradigm. It is style of coding. In which object is in lead. C, is not object oriented but it has something call structure but not class and its property. C++ is partially object oriented it has class, and its property but you can create program without it also. Whereas Java is fully object oriented. Everything is in class including methods object all of things. Hope it helps if you did not understand, please reply I love to help
12th Mar 2017, 5:50 AM
Aditya kumar pandey
Aditya kumar pandey - avatar
+ 3
In short, OOP works around with classes and object. C# is one example though it is not fully OOP. In C#, you have to place most of your codes inside a class else your compiler will complain.
12th Mar 2017, 6:50 AM
Wen Qin
Wen Qin - avatar