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