Object-Oriented Programming

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

Internal

Overview

Object-Oriented Programming vs Functional Programming

Object-Oriented Programming vs Functional Programming

Class

A class represents a type of thing and concept. Classes defines state - what kind of information, or attributes they can store. Classes also define behavior, or methods.

Objects

An object is a specific instance of a class.

Inheritance

Organizatorium

Object-oriented programming is first and foremost about message passing.