Are there established alternatives to ISomething/ ISomethingable for interfaces? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T06:13:07Z http://stackoverflow.com/feeds/question/222457 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/222457/are-there-established-alternatives-to-isomething-isomethingable-for-interfaces 5 Are there established alternatives to ISomething/ ISomethingable for interfaces? David Arno 2008-10-21T16:11:03Z 2009-04-01T14:10:11Z <p>The .NET standard of prefixing an interface name with an I seems to be becoming widespread and isn't just limited to .NET any more. I have come across a lot of Java code that uses this convention (so it wouldn't surprise me if Java used it before C# did). Also Flex uses it, and so on. The placing of an I at the start of the name smacks of Hungarian notation though and so I'm uncomfortable with using it.</p> <p>So the question is, is there an alternative way of denoting that Something is an interface, rather than a class and is there any need to denote it like this anyway. Or is it a case its become a standard and so I should just accept it and stop trying to stir up "religious wars" by suggesting it be done differently?</p> http://stackoverflow.com/questions/222457/are-there-established-alternatives-to-isomething-isomethingable-for-interfaces/222476#222476 0 Answer by workmad3 for Are there established alternatives to ISomething/ ISomethingable for interfaces? workmad3 2008-10-21T16:16:47Z 2008-10-21T16:16:47Z <p>The coding standard for Symbian has interfaces (pure abstract C++ classes) denoted with an M rather than an I.</p> <p>Otherwise, the only other way I have seen of denoting interfaces is through context.</p> http://stackoverflow.com/questions/222457/are-there-established-alternatives-to-isomething-isomethingable-for-interfaces/222484#222484 0 Answer by neilwhitaker1 for Are there established alternatives to ISomething/ ISomethingable for interfaces? neilwhitaker1 2008-10-21T16:17:42Z 2008-10-21T16:17:42Z <p>For .NET, Microsoft's Framework Design Guidelines book absolutely recommends it, and yes, it is very much standard. I have never seen it done otherwise, and to create a new convention would only serve to confuse people.</p> <p>I should add that I dislike Hungarian notation too, but this and the case of prefixing class variables with an underscore are good exceptions to me, because they make code so much more readable.</p> http://stackoverflow.com/questions/222457/are-there-established-alternatives-to-isomething-isomethingable-for-interfaces/222488#222488 1 Answer by bnkdev for Are there established alternatives to ISomething/ ISomethingable for interfaces? bnkdev 2008-10-21T16:18:00Z 2008-10-23T06:47:57Z <p>Its all about <strong>style</strong> and <strong>readability</strong>. Prefixing Interfaces with "I" is merely a naming convention and style guideline that has caught on. The compilers themselves couldn't care less.</p> http://stackoverflow.com/questions/222457/are-there-established-alternatives-to-isomething-isomethingable-for-interfaces/222498#222498 6 Answer by Jon Skeet for Are there established alternatives to ISomething/ ISomethingable for interfaces? Jon Skeet 2008-10-21T16:19:25Z 2008-10-21T16:19:25Z <p>I would just accept it, to be honest. I know what you mean about being a bit like Hungarian notation (or at least abuse of the same) but I think it gives sufficient value to be worth doing in this case.</p> <p>With dependency injection being in vogue, often I find I end up with an interface and a single production implementation. It's handy to make them easily distinguishable just with the I prefix.</p> <p>One little data point: I work with both Java and C# a fair amount, and I regularly find myself having to check which types in Java are actually interfaces, particularly around the collection framework. .NET just makes this simple. Maybe it doesn't bother other people, but it bothers me.</p> <p>+1 for IFoo from me.</p> http://stackoverflow.com/questions/222457/are-there-established-alternatives-to-isomething-isomethingable-for-interfaces/222500#222500 10 Answer by Scott Dorman for Are there established alternatives to ISomething/ ISomethingable for interfaces? Scott Dorman 2008-10-21T16:19:56Z 2008-10-21T16:19:56Z <p>From the Framework Design Guidelines book:</p> <blockquote> <p>Interfaces representing roots of a hierarchy (e.g. IList) should also use nouns or noun phrases. Interfaces representing capabilities should use adjectives and adjective phrases (e.g. IComparable, IFormattable).</p> </blockquote> <p>Also, from the annotations on interface naming:</p> <blockquote> <p>KRZYSZTOF CWALINA: One of the few prefixes used is “I” for interfaces (as in ICollection), but that is for historical reasons. In retrospect, I think it would have been better to use regular type names. In a majority of the cases developers don’t care that something is an interface and not an abstract class, for example.</p> <p>BRAD ABRAMS: On the other hand, the “I” prefix on interfaces is a clear recognition of the influence of COM (and Java) on the .NET Framework. COM popularized, even institutionalized, the notation that interfaces begin with “I.” Although we discussed diverging from this historic pattern we decided to carry forward the pattern as so many of our users were already familiar with COM. </p> <p>JEFFREY RICHTER: Personally, I like the “I” prefix and I wish we had more stuff like this. Little one-character prefixes go a long way toward keeping code terse and yet descriptive. As I said earlier, I use prefixes for my private type fields because I find this very useful.</p> <p>BRENT RECTOR Note: this is really another application of Hungarian notation (though one without the disadvantages of the notation's use in variable names).</p> </blockquote> <p>It has very much become a widely adopted standard, and while it is a form of Hungarian, as Brent states, it doesn't suffer from the disadvantages of using Hungarian notation in variable names.</p> http://stackoverflow.com/questions/222457/are-there-established-alternatives-to-isomething-isomethingable-for-interfaces/222502#222502 5 Answer by Konrad Rudolph for Are there established alternatives to ISomething/ ISomethingable for interfaces? Konrad Rudolph 2008-10-21T16:20:15Z 2008-10-21T16:20:15Z <p>As a .NET programmer (for the most part), I actually prefer the Java convention of dropping the <code>I</code> here, for a simple reason: Often, small redesigns require the change from an interface into an abstract base class or vice versa. If you have to change the name, this might require a lot of unnecessary refactoring.</p> <p>On the other hand, usage for the client should be transparent so they shouldn't care for this type hint. Furthermore, the “able” suffix in `Thingable” should be enough of a hint. It works well enough in Java.</p> <p>/EDIT: I'd like to point out that the above reasoning had prompted me to drop the <code>I</code> prefix for private projects. However, upon checking one of them against the FxCop rule set, I promptly reverted to the usage of <code>I</code>. Consistency wins here, <em>even though <a href="http://www.bartleby.com/59/3/foolishconsi.html" rel="nofollow">a foolish consistency is the hobgoblin of little minds</a></em>.</p> http://stackoverflow.com/questions/222457/are-there-established-alternatives-to-isomething-isomethingable-for-interfaces/414375#414375 0 Answer by willcodejavaforfood for Are there established alternatives to ISomething/ ISomethingable for interfaces? willcodejavaforfood 2009-01-05T20:24:28Z 2009-01-05T20:24:28Z <p>I've always thought this naming convention is a bit of a dinosaur. Nowadays IDEs are powerful enough to tell us that something is an interface. Adding that I makes the code harder to read so if you really want to have a naming convention that separates interfaces from classes I would append Impl to the name of the implementing class.</p> <pre><code>public class CustomerImpl implements Customer </code></pre> http://stackoverflow.com/questions/222457/are-there-established-alternatives-to-isomething-isomethingable-for-interfaces/705692#705692 0 Answer by Mario for Are there established alternatives to ISomething/ ISomethingable for interfaces? Mario 2009-04-01T14:10:11Z 2009-04-01T14:10:11Z <p>You asked for an alternative, so here is one I have encountered:</p> <p>Use <strong>no</strong> prefix on the interface class, but use a <strong>c</strong> or <strong>C</strong> prefix on the corresponding concrete classes. Most of your code will generally reference the interface, so why pollute it with the prefix and not the generally much less used concrete type.</p> <p>This approach does introduce one inconsistency in that some concrete types will be prefixed (the ones with matching interfaces) and others will not. This may be useful since it reminds developers that an interface exists and its use should be preferred over the concrete type.</p> <p>To be honest, <em>I</em> use the prefix on the interface, but I think it is more because I have become so accustomed and comfortable with to it. </p>