Object-Oriented Programming

Instance

English

Overview

A concrete entity actually created from a class.

Details

An entity created in memory based on a class definition, each holding its own independent state (field values). Multiple instances created from the same class differ in their field values (state), but the method implementation code itself exists just once on the class side and is shared by every instance.

More Programming terms