Instantiation (computer science)

From Wikipedia, the free encyclopedia

Instantiation is the process of creating a specific object which is a member or instance of a class.

Usually this is done via an explicitly coded constructor, although Java and VB allow the programmer to use a default constructor which is not part of the source code.

See also: object lifetime.
In other languages