public class Foo : IFoo
...
What is the difference between
IFoo foo = new Foo();
and
Foo foo = new Foo();
|
|
|||||||||
|
|
|
The difference is just in the declared type of the variable. That type will then be used by the compiler whenever you use the expression The reverse is true for members of With the first declaration, you could also reassign the variable to a reference to any other object of a type implementing
whereas with the second declaration you can only assign values which are compatible with Often it's advantageous to code to an interface rather than a particular implementation. It means the compiler will prevent you from using details which are specific to the implementation, which in turn means it's likely to be easier to change to a different implementation in the future. The type of the variable also affects things like overload resolution:
may call different methods depending on whether Basically the compile-time type of a variable is important in all kinds of ways - virtually every time you use the variable, some aspect of the meaning of that code will depend on the type of the variable. |
||||||||||||
|
|
|
If foo is of type IFoo, and Foo implemented methods or properties that are not defined in IFoo, you wouldn't be able to access them unless you cast foo to Foo. If foo is of type IFoo, you could instantiate other types that also inhert from IFoo and assign it to foo. It's more abstracted, so you are not depending specifically on type Foo. |
||
|
|
|
|
The first example is an instance of some object implementing IFoo. The second example is an instance of a Foo object. |
||
|
|