What does Object Oriented Programming actually means? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What does Object Oriented Programming actually means?

I am confused about how it is stated of being object oriented. What does object orientation mean and how do we do that. Is there any possible example.

13th Aug 2017, 2:48 PM
Bhawani Shankar Bharti
Bhawani Shankar Bharti - avatar
3 Answers
+ 12
well object oriented programming is used a lot in the corporate tech world and how it works is that they treat us like Objects but Orient us to be their Programming monkeys. FUNCTIONAL PROGRAMMING FTW!!!
13th Aug 2017, 2:55 PM
Ahri Fox
Ahri Fox - avatar
+ 7
It makes use of objects. Java is one of those pruely OOP languages. It mostly involves around with classes and objects. Say you want to create an integer variable x with 10, whats really happening is this: Integer x = new Integer(10); Even your datatype is a class. That is what objects are all about.
13th Aug 2017, 4:21 PM
Wen Qin
Wen Qin - avatar
+ 2
OOP uses classes to define the properties an element has like hight and the things it can do. So OOP associates a windows hight and width with the window object and would have a close method to control what happens when you click the (X Close button).
13th Aug 2017, 4:16 PM
josh mizzi
josh mizzi - avatar