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.
3 Antworten
+ 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!!!
+ 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.
+ 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).