C#: Interfaces - Implicit and Explicit implementation - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T22:15:19Zhttp://stackoverflow.com/feeds/question/143405http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/143405/c-interfaces-implicit-and-explicit-implementation34C#: Interfaces - Implicit and Explicit implementationSeb Nilsson2008-09-27T10:56:16Z2009-11-18T07:22:28Z
<p>What are the differences in implementing interfaces <strong>implicitly</strong> and <strong>explicitly</strong> in C#?</p>
<p>When should you use implicit and when should you use explicit?</p>
<p>Are there any pros and/or cons to one or the other?</p>
http://stackoverflow.com/questions/143405/c-interfaces-implicit-and-explicit-implementation/143423#14342327Answer by mattlant for C#: Interfaces - Implicit and Explicit implementationmattlant2008-09-27T11:07:40Z2008-09-27T11:18:41Z<p>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:</p>
<pre><code> public void CopyTo(Array array, int index)
{
throw new NotImplementedException();
}
</code></pre>
<p>and explicity as:</p>
<pre><code> void ICollection.CopyTo(Array array, int index)
{
throw new NotImplementedException();
}
</code></pre>
<p>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.</p>
<pre><code>myclass.CopyTo //invalid with explicit
((IList)myClass).CopyTo //valid with explicit.
</code></pre>
<p>I use explicit primarily to keep the implementation clean, or when i need two implemetations. But regardless i rarely use it.</p>
<p>I am sure there are more reasons to use it/not use it that others will post</p>
<p>EIT: See the <a href="http://stackoverflow.com/questions/143405/c-interfaces-implicit-and-explicit-implementation#143425">next post</a> in this thread for excellent reasoning behind each. </p>
http://stackoverflow.com/questions/143405/c-interfaces-implicit-and-explicit-implementation/143425#14342525Answer by Phil Bennett for C#: Interfaces - Implicit and Explicit implementationPhil Bennett2008-09-27T11:09:57Z2008-09-27T11:09:57Z<p>Implicit definition would be to just add the methods / properties etc demanded by the interface directly to the class as public methods.</p>
<p>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.</p>
<p>A) By working directly with the interface, you are not acknowledging, and coupling your code to the underlying implementation.</p>
<p>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.</p>
<p>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).</p>
http://stackoverflow.com/questions/143405/c-interfaces-implicit-and-explicit-implementation/143433#1434330Answer by Bill for C#: Interfaces - Implicit and Explicit implementationBill2008-09-27T11:12:33Z2008-09-27T11:12:33Z<p>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.</p>
<p>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.</p>
<p>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.</p>
<p>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.</p>
<p>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. </p>
http://stackoverflow.com/questions/143405/c-interfaces-implicit-and-explicit-implementation/143483#1434837Answer by Matthew Scharley for C#: Interfaces - Implicit and Explicit implementationMatthew Scharley2008-09-27T11:59:02Z2008-09-27T13:44:22Z<p>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 <code>IEnumerable<T></code> as a prime example that will likely come up fairly often.</p>
<p>Here's an example:</p>
<pre><code>public abstract class StringList : IEnumerable<string>
{
private string[] _list = new string[] {"foo", "bar", "baz"};
// ...
#region IEnumerable<string> Members
public IEnumerator<string> GetEnumerator()
{
foreach (string s in _list)
{ yield return s; }
}
#endregion
#region IEnumerable Members
IEnumerator IEnumerable.GetEnumerator()
{
return this.GetEnumerator();
}
#endregion
}
</code></pre>
<p>Here, <code>IEnumerable<string></code> implements <code>IEnumerable</code>, hence we need to too. But hang on, both the generic and the normal version <strong>both implement funtions with the same method signature</strong> (C# ignores return type for this). This is completely legal and fine. How does the compiler resolve which to use? It forces you to only have, at most, one implicit definition, then it can resolve whatever it needs to.</p>
<p>ie.</p>
<pre><code>StringList sl = new StringList();
// uses the implicit definition.
IEnumerator<string> enumerableString = sl.GetEnumerator();
// same as above, only a little more explicit.
IEnumerator<string> enumerableString2 = ((IEnumerable<string>)sl).GetEnumerator();
// returns the same as above, but via the explicit definition
IEnumerator enumerableStuff = ((IEnumerable)sl).GetEnumerator();
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/143405/c-interfaces-implicit-and-explicit-implementation/143606#1436063Answer by Seb Nilsson for C#: Interfaces - Implicit and Explicit implementationSeb Nilsson2008-09-27T12:58:17Z2008-09-27T12:58:17Z<p>Microsoft's official guidelines (from first edition <a href="http://rads.stackoverflow.com/amzn/click/0321246756" rel="nofollow">Framework Design Guidelines</a>) states that <strong>using explicit implementations are not recommended</strong>, since it gives the code unexpected behaviour.</p>
<p>I think this guideline is very <strong>valid in a pre-IoC-time</strong>, when you don't pass things around as interfaces.</p>
<p>Could anyone touch on that aspect as well?</p>
http://stackoverflow.com/questions/143405/c-interfaces-implicit-and-explicit-implementation/157490#1574901Answer by Lee Oades for C#: Interfaces - Implicit and Explicit implementationLee Oades2008-10-01T13:08:01Z2008-10-01T13:08:01Z<p>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.</p>
<pre><code>/// <summary>
/// This is a Book
/// </summary>
interface IBook
{
string Title { get; }
string ISBN { get; }
}
/// <summary>
/// This is a Person
/// </summary>
interface IPerson
{
string Title { get; }
string Forename { get; }
string Surname { get; }
}
/// <summary>
/// This is some freaky book-person.
/// </summary>
class Class1 : IBook, IPerson
{
/// <summary>
/// This method is shared by both Book and Person
/// </summary>
public string Title
{
get
{
string personTitle = "Mr";
string bookTitle = "The Hitchhikers Guide to the Galaxy";
// What do we do here?
return null;
}
}
#region IPerson Members
public string Forename
{
get { return "Lee"; }
}
public string Surname
{
get { return "Oades"; }
}
#endregion
#region IBook Members
public string ISBN
{
get { return "1-904048-46-3"; }
}
#endregion
}
</code></pre>
<p>This code compiles and runs ok, but the Title property is shared.</p>
<p>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.</p>
<pre><code> string IBook.Title
{
get
{
return "The Hitchhikers Guide to the Galaxy";
}
}
string IPerson.Title
{
get
{
return "Mr";
}
}
public string Title
{
get { return "Still shared"; }
}
</code></pre>
<p>Notice that the explicit interface definitions are inferred to be Public - and hence you can't declare them to be public (or otherwise) explicitly.</p>
<p>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.</p>
<p>If you do not define the "shared" (implicit) Title, consumers of Class1 <strong>must</strong> explictly cast instances of Class1 to IBook or IPerson first - otherwise the code will not compile.</p>
http://stackoverflow.com/questions/143405/c-interfaces-implicit-and-explicit-implementation/1754195#17541950Answer by Babu the Surfur for C#: Interfaces - Implicit and Explicit implementationBabu the Surfur2009-11-18T07:22:28Z2009-11-18T07:22:28Z<p>Check out this link..Probably it will help
<a href="http://msdn.microsoft.com/en-us/library/aa288461%28VS.71,loband%29.aspx" rel="nofollow"><strong><em>Click here</em></strong></a></p>