Take the following code:
IFoo foo = new FooImplementation();
The identifier foo has two types:
IFoo- This is the type the compiler will enforce. I will only be able to call methods that are part of theIFoocontract, otherwise I'll get a compiler error.FooImplementation- This is the type as known by the runtime. I can downcastfooto aFooImplementationat runtime, and then call non-IFoo methods ofFooImplementation.
My question: What is the proper terminology for these two types. I could swear in school we were taught that IFoo is the identifier's static type and FooImplementation is its dynamic type, but after much searching on Google I can't seem to find any reference to this.
IFoois the type of variable foo.FooImplementationis the type of memory allocated to foo. – D J Jan 29 at 0:07