What are the differences in implementing interfaces implicitly and explicitly in C#?
When should you use implicit and when should you use explicit?
Are there any pros and/or cons to one or the other?
|
11
|
What are the differences in implementing interfaces implicitly and explicitly in C#? When should you use implicit and when should you use explicit? Are there any pros and/or cons to one or the other?
|
|||
|
|
|
|
Implicit is when you define your interface via a member on your class. Explicit is when you define methods within your class on the interface. I know that sounds confusing but here is what I mean: IList.CopyTo would be implicitly implememnted as:
and explicity as:
The difference being that implicitly is accessible throuh your class you created when it is cast as that class as well as when its cast as the interface. Explicit implentation allows it to only be accessible when cast as the interface itself.
I use explicit primarily to keep the implementation clean, or when i need two implemetations. But regardless i rarely use it. I am sure there are more reasons to use it/not use it that others will post EIT: See the next post in this thread for excellent reasoning behind each. |
|||
|
|
|
|
Implicit definition would be to just add the methods / properties etc demanded by the interface directly to the class as public methods. Explicit definition forces the methods to be exposed only when you are working with the interface directly, and not the underlying implementation. This is preferred in most cases. A) By working directly with the interface, you are not acknowledging, and coupling your code to the underlying implementation. B) In the event that you already have, say, a public property Name in your code and you want to implement an interface that also has a Name property, doing it explicitly will keep the two separate. Even if they were doing the same thing I'd still delegate the explicit call to the Name property. You never know, you may want to change how Name works for the normal class and how Name, the interface property works later on. C) If you implement an interface implicitly then your class now exposes new behaviours that might only be relevant to a client of the interface and it means you aren't keeping your classes succinct enough (my opinion). |
||||||
|
|
|
If you implement explicitly, you will only be able to reference the interface members through a reference that is of the type of the interface. A reference that is the type of the implementing class will not expose those interface members. If your implementing class is not public, except for the method used to create the class (which could be a factory or IOC container), and except for the interface methods (of course), then I don't see any advantage to explicitly implementing interfaces. Otherwise, explicitly implementing interfaces makes sure that references to your concrete implementing class are not used, allowing you to change that implementation at a later time. "Makes sure", I suppose, is the "advantage". A well-factored implementation can accomplish this without explicit implementation. The disadvantage, in my opinion, is that you will find yourself casting types to/from the interface in the implementation code that does have access to non-public members. Like many things, the advantage is the disadvantage (and vice-versa). Explicitly implementing interfaces will ensure that your concrete class implementation code is not exposed. |
||
|
|
|
|
In addition to excellent answers already provided, there are some cases where explicit implementation is REQUIRED for the compiler to be able to figure out what is required. Take a look at Here's an example:
Here, ie.
PS: The little piece of indirection in the explicit definition for IEnumerable works because inside the function the compiler knows that the actual type of the variable is a StringList, and that's how it resolves the function call. Nifty little fact for implementing some of the layers of abstraction some of the .NET core interfaces seem to have accumulated. |
|||
|
|
|
|
Microsoft's official guidelines (from first edition Framework Design Guidelines) states that using explicit implementations are not recommended, since it gives the code unexpected behaviour. I think this guideline is very valid in a pre-IoC-time, when you don't pass things around as interfaces. Could anyone touch on that aspect as well? |
||||
|
|
|
In addition to the other reasons already stated, the is the situation in which a class is implementing 2 different interfaces that have a property/method with the same name and signiture.
This code compiles and runs ok, but the Title property is shared. Clearly, we'd want the value of Title returned to depend on whether we were treating Class1 as a Book or a Person. This is when we can use the explicit interface.
Notice that the explicit interface definitions are inferred to be Public - and hence you can't declare them to be public (or otherwise) explicitly. Note also that you can still have a "shared" version (as shown above) but whilst this is possible, the existence of such a property is questionable. Perhaps it could be used as a default implementation of Title - so that existing code would not have to be modified to cast Class1 to IBook or IPerson. If you do not define the "shared" (implicit) Title, consumers of Class1 must explictly cast instances of Class1 to IBook or IPerson first - otherwise the code will not compile. |
||
|
|
|
|
Check out this link..Probably it will help Click here |
||
|
|