Class nomenclature

Ali Çehreli acehreli at yahoo.com
Fri Jan 8 16:24:56 PST 2010


Is there an established nomenclature for D class objects and variables?

- What do you call c0 and c1 below? "variable"? "reference"?

- What do you call the actual object? "instance"? "object"?

class C
{}

void main()
{
     auto c0 = new C;
     auto c1 = c0;
}

Thank you,
Ali



More information about the Digitalmars-d mailing list