So, what exactly is a good use case for implementing an interface explicitly?
Is it only so that people using the class don't have to look at all those methods/properties in intellisense?
|
|
|
If you implement two interfaces, both with the same method and different implementations, then you have to implement explicitly.
|
|||
|
|
It's useful to hide the non-preferred member. For instance, if you implement both Another interesting note is that normally using such a construct means that struct that explicitly implement an interface can only invoke them by boxing to the interface type. You can get around this by using generic constraints::
Will not box an int when you pass one to it. |
|||||
|
|
Some additional reasons to implement an interface explicitly: backwards compatibility: In case the 'ICloneable' interface changes, implementing method class members don't have to change their method signatures. cleaner code: there will be a compiler error if the 'Clone' method is removed from ICloneable, however if you implement the method implicitly you can end up with unused 'orphaned' public methods strong typing: To illustrate supercat's story with an example, this would be my preferred sample code, implementing ICloneable explicitly allows 'Clone()' to be strongly typed when you call it directly as a MyObject instance member:
|
|||||
|
|
Another useful technique is to have a function's public implementation of a method return a value which is more specific than specified in an interface. For example, an object can implement iCloneable, but still have its publicly-visible Clone method return its own type. Likewise, an iAutomobileFactory might have a Manufacture method which returns an Automobile, but a FordExplorerFactory, which implements iAutomobileFactory, might have its Manufacture method return a FordExplorer (which derives from Automobile). Code which knows that it has a FordExplorerFactory could use FordExplorer-specific properties on an object returned by a FordExplorerFactory without having to typecast, while code which merely knew that it had some type of iAutomobileFactory would simply deal with its return as an Automobile. |
|||
|
It can keep the public interface cleaner to explicitly implement an interface, i.e. your F# only offers explicit interface implementation so you always have to cast to the particular interface to access its functionality, which makes for a very explicit (no pun intended) use of the interface. |
|||||
|
|
If you have an internal interface and you don't want to implement the members on your class publicly, you would implement them explicitly. Implicit implementations are required to be public. |
|||
|
|
It's also useful when you have two interfaces with the same member name and signature, but want to change the behavior of it depending how it's used. (I don't recommend writing code like this):
|
|||||
|