C#: Interfaces - Implicit and Explicit implementation - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T22:15:19Z http://stackoverflow.com/feeds/question/143405 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/143405/c-interfaces-implicit-and-explicit-implementation 34 C#: Interfaces - Implicit and Explicit implementation Seb Nilsson 2008-09-27T10:56:16Z 2009-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#143423 27 Answer by mattlant for C#: Interfaces - Implicit and Explicit implementation mattlant 2008-09-27T11:07:40Z 2008-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#143425 25 Answer by Phil Bennett for C#: Interfaces - Implicit and Explicit implementation Phil Bennett 2008-09-27T11:09:57Z 2008-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#143433 0 Answer by Bill for C#: Interfaces - Implicit and Explicit implementation Bill 2008-09-27T11:12:33Z 2008-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#143483 7 Answer by Matthew Scharley for C#: Interfaces - Implicit and Explicit implementation Matthew Scharley 2008-09-27T11:59:02Z 2008-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&lt;T&gt;</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&lt;string&gt; { private string[] _list = new string[] {"foo", "bar", "baz"}; // ... #region IEnumerable&lt;string&gt; Members public IEnumerator&lt;string&gt; 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&lt;string&gt;</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&lt;string&gt; enumerableString = sl.GetEnumerator(); // same as above, only a little more explicit. IEnumerator&lt;string&gt; enumerableString2 = ((IEnumerable&lt;string&gt;)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#143606 3 Answer by Seb Nilsson for C#: Interfaces - Implicit and Explicit implementation Seb Nilsson 2008-09-27T12:58:17Z 2008-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#157490 1 Answer by Lee Oades for C#: Interfaces - Implicit and Explicit implementation Lee Oades 2008-10-01T13:08:01Z 2008-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>/// &lt;summary&gt; /// This is a Book /// &lt;/summary&gt; interface IBook { string Title { get; } string ISBN { get; } } /// &lt;summary&gt; /// This is a Person /// &lt;/summary&gt; interface IPerson { string Title { get; } string Forename { get; } string Surname { get; } } /// &lt;summary&gt; /// This is some freaky book-person. /// &lt;/summary&gt; class Class1 : IBook, IPerson { /// &lt;summary&gt; /// This method is shared by both Book and Person /// &lt;/summary&gt; 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#1754195 0 Answer by Babu the Surfur for C#: Interfaces - Implicit and Explicit implementation Babu the Surfur 2009-11-18T07:22:28Z 2009-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>