What does object-oriented mean?
In a nutshell take this with a grain of salt no time to write a book.....OOP programming means that a bunch of seperate files/code objects (objects) that are working together to represent a program these files/code objects can be interchanged and re-organized to create other programs with similar features OOP = object oriented programming.
it means that everything is inside classes and is treated as an object.
In OOP, you deal with objects and classes. An object is a particular instance of a class. Each class has a series of attributes or properties, and specific functions and/or methods that it can use; therefore, each object of that class has those same attributes and methods. Objects are constructed, rather than simply being assigned a value. For instance, if you have a Dog class, all members of the Dog class have a Name and an Age, and all of them can Bark, Roll Over, and Wag Their Tails. Well, something like that...
Join our real-time social learning platform and learn together with your friends!