Aslam-o-Alaikum
Can any one who tell me what is the meaning of object oriented........?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Vijay YadavPosted Mar 18, 2011, 3:52 AM
It is a modular approach to computer program (software) design. Each module, or object, combines data and procedures (sequences of instructions) that act on the data; in traditional, or procedural, programming the data are separated from the instructions. A group of objects that have properties, operations, and behaviors in common is called a class. By reusing classes developed for previous applications, new applications can be developed faster with improved reliability and consistency of design. The first object-oriented programs, written in the language Simula 67, were used extensively for modeling and simulation, primarily in Europe during the late 1960s and early 1970s. The technique was popularized in the United States during the following decade using the language SmallTalk and achieved its greatest prominence with the development of the object-oriented language C++ during the late 1980s and 1990s.
Jean PaulPosted Mar 18, 2011, 3:51 AM
Object Oriented programming was introduced after Procedure Oriented programming.
The wikipedia says object as datastructure shaving properties and methods tied together.
http://en.wikipedia.org/wiki/Object-oriented_programming
Through Object Oriented Programming we can have the following benefits:
Abstraction: Hiding inner workings or implementation details
Polymorphism: Different types of behaviors on the runtime
Inheritance: Resusability is one of the advantage
Regards,
Jean Paul