+ 2
Confusion: Object Oriented Programming Language
I'm really dont understand the meaning of OOP In different languages
4 Answers
+ 4
OOP is the idea, that in programs objects should interact.
Everything is an object and can be manipulated from other objects.
in functional programming all is function....
.... and a function is an object.
Up to now no language is completely oop.
+ 1
Think it as:
Everything in the world is an object. It lives a purposeful life. OOP is a way of programming based on objects. There, each object exists for a lifetime, can do defined work, has properties.
Because we deal every entity like object so its called Object Oriented Programming.
Its my own point of view about OOP.
0
Thanks for the answer Ms.Falk