A definition is a unique specification of an object or variable, function, class, or enumerator. Because definitions must be unique, a program can contain only one definition for a given program element.
There can be a many-to-one correspondence between declarations and definitions. There are two cases in which a program element can be declared and not defined:
class WindowCounter; // Forward reference; no definition
class Window
{
static WindowCounter windowCounter; // Definition of
// WindowCounter
// not required.
};