(O) 1 term
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Owned All
Term (Ascending) Term (Descending) Creation date (Ascending) Creation date (Descending) Creator (Ascending) Creator (Descending) Term Definition Abbreviations Synonyms Labels


Object-oriented programming Created Sep 13, 2018 (18:56) by Victor Cheung

Definition

Object-oriented programming (OOP) is a programming paradigm based on the concept of "objects", which may contain data, in the form of fields, often known as attributes; and code, in the form of procedures, often known as methods. A feature of objects is that an object's procedures can access and often modify the data fields of the object with which they are associated (objects have a notion of "this" or "self"). In OOP, computer programs are designed by making them out of objects that interact with one another. There is significant diversity of OOP languages, but the most popular ones are class-based, meaning that objects are instances of classes, which typically also determine their type.

Source: https://en.wikipedia.org/wiki/Object-oriented_programming

Abbreviation(s)

    OOP