Object-oriented programming


object-oriented programming
A schematic paradigm for computer programming in which the linear concepts of procedures and tasks are replaced by the concepts of objects and messages. An object includes a package of data and a description of the operations that can be performed on that data. A message specifies one of the operations, but unlike a procedure, does not describe how the operation should be carried out. C++ is an example of an object-oriented programming language.
programming
(OOP) The use of a class of programming languages and techniques based on the concept of an “object” which is a data structure (abstract data type) encapsulated with a set of routines, called “methods”, which operate on the data. Operations on the data can __only__ be performed via these methods, which are common to all objects that are instances of a particular “class”. Thus the interface to objects is well defined, and allows the code implementing the methods to be changed so long as the interface remains the same.
Each class is a separate module and has a position in a “class hierarchy”. Methods or code in one class can be passed down the hierarchy to a subclass or inherited from a superclass. This is called “inheritance”.
A procedure call is described as invoking a method on an object (which effectively becomes the procedure’s first argument), and may optionally include other arguments. The method name is looked up in the object’s class to find out how to perform that operation on the given object. If the method is not defined for the object’s class, it is looked for in its superclass and so on up the class hierarchy until it is found or there is no higher superclass.
OOP started with SIMULA-67 around 1970 and became all-pervasive with the advent of C++, and later Java. Another popular object-oriented programming language (OOPL) is Smalltalk, a seminal example from Xerox’s Palo Alto Research Center (PARC). Others include Ada, Object Pascal, Objective C, DRAGOON, BETA, Emerald, POOL, Eiffel, Self, Oblog, ESP, Loops, POLKA, and Python. Other languages, such as Perl and VB, permit, but do not enforce OOP.
FAQ (http://iamwww.unibe.ch/~scg/OOinfo/FAQ/). (http://zgdv.igd.fhg.de/papers/se/oop/). (http://cuiwww.unige.ch/Chloe/OOinfo).
Usenet newsgroup: news:comp.object.
(2001-10-11)

Read Also:

  • Object-oriented programming language

    object-oriented programming

  • Object-oriented sql

    language (OSQL) A functional language, a superset of SQL, used in Hewlett-Packard’s OpenODB database system. (1994-11-29)

  • Object-oriented turing

    language An extension of Turing and a replacement for Turing Plus by R.C. Holt , U Toronto, 1991. Object-Oriented Turing supports imperative programming, object-oriented programming and concurrent programming. It has modules, classes, single inheritance, processes, exception handling and optional machine-dependent programming. There is an integrated environment under the X Window System and a demo version […]

  • Objectory

    programming An object-oriented methodology mostly created by Ivar Jacobson. (2003-07-11)

  • Objectpal

    Object-oriented database language, part of Borland’s MS-Windows version of Paradox.


Disclaimer: Object-oriented programming definition / meaning should not be considered complete, up to date, and is not intended to be used in place of a visit, consultation, or advice of a legal, medical, or any other professional. All content on this website is for informational purposes only.