Instance

From Director Online Wiki
Jump to: navigation, search

An Object Oriented Programming term. An object has two forms: a class and an instance. The class is the template for each object. The instance is the object itself, which is created at runtime.

Each instance has a separate block of memory allocated for its properties, but all instances share the same code.