In an effort to ensure the use of proper terminology when describing certain aspects of code, I'm asking for clarification of use in the following context:
If we write
int myIntTest;
we say "We have an int variable"
Assume that we have an Employee class, and when we write
Employee myObjectTest;
we say "We have a reference for an Employee object"
My question is:
Is it corret to say "myObjectTest is a Employee class' variable"?