vote up 2 vote down star

One interesting aspect of extension methods in .NET is the fact that you can apply them to interfaces. For me, it seems nice that I can define functionality near the interface without defining an abstract class that clutters the assembly.

I know that abstract classes are not obsolete or anything, but how do you feel about utilizing this side effect in your code?

Example:

public static class IUserExtensions
{
    public static bool IsCurrentUser(this IUser user)
    {
        return (HttpContext.Current.User != null &&
                HttpContext.Current.User.Identity.Name == user.ID.ToString());
    }
}

public interface IUser {
    int ID { get; set; }
}
flag

80% accept rate
That is a class, not an interface – Ed Swangren Mar 16 at 19:48
That's just the extension wrapper. IUser is an actual interface. – BC Mar 16 at 19:51

11 Answers

vote up 3 vote down check

What extension methods lets you do is to focus in on what abstract classes should actually be doing. There's a temptation to implement "utility" code in abstract classes because it will be used by implementers even though it may not be part of the logical inheritance tree. Extension methods let you attach these utility methods to the interface without cluttering up your abstract base classes.

EDIT

Specifically, I would apply these guidelines.

Inheritance

  • DO use inheritance if the behavior is part of the logical behavior of the base class
  • DO NOT use inheritance if the behavior is cross-cutting (applies to things outside of your object hierarchy). These will require duplication.

Utility Classes

  • DO use utility classes (static classes) if the behavior does not logically belong to the class it's acting on
  • DO NOT use utility classes if they modify the internal state of the object it's acting on. State modification should be reserved only for the object implementation hierarchy.

Extension Methods

  • DO use the same decision for extension methods as you would for utility classes when they create less friction. If adopting extension methods feels less natural, don't do it.
  • DO use extension methods to add utility to classes you don't have control over (like string).
  • DO NOT use extension methods when the behavior is consumed by the class it is extending. While it is possible to do it, it feels contrived
  • DO NOT use extension methods just because you can. In fact don't deviate from good old fashioned OOP unless you have to. When you have to, however, extension methods are a relatively uesful and harmless decision to make.

EDIT 2

Thought of another DO for extension methods

DO use extension methods to provide a natural language (internal DSL) for certain implementations. Here's a silly example.

int age = getAge();
if (age.IsDraftAge() && !age.IsLegalDrinkingAge())
{
    Console.WriteLine(@"You cannot drink until your birthdate on {0}.
Join the army instead.",
                      age.GetYearWhenGettingDrunkIsOk());
}
link|flag
That sounds like a positive, but as you write more and more of your code in extension methods, you end up with what amounts to nothing more than static God classes. – Erik Mar 16 at 20:05
It's a tradeoff. Putting utility code in your base classes prevents reusability, since these types of methods represent cross-cutting concerns. I'm only talking about making it easier to "do the right thing" and not put utility methods in base class implementations. I'll edit with an example. – Michael Meadows Mar 16 at 20:23
No example, just guidelines. – Michael Meadows Mar 16 at 20:46
Excellent list of guidelines - thanks =) – Erik Mar 16 at 20:55
As for Edit 2 - great idea, although this can be taken too far. – Erik Mar 16 at 21:46
vote up 4 vote down

I have used this functionality several times - and in fact, this functionality was created specifically for the purpose of decorating interfaces without modifying them, hence LINQ. All the goodness that is LINQ (to Objects at least) is based on extension methods to IEnumerable<T>.

However, I don't feel that extension methods in any way replace abstract base classes for when you need them. Extension methods cannot access the extended class's private state - extension methods look like instances, but are still static.

Extension methods and abstract base classes solve two different types of problems, and the choice to use either of these paradigms should not depend on each other.

My answer to your title question is thus: No, the existence of Extension Methods do not make Abstract Base Classes less attractive. If one believes that the existence of Extension Methods makes Abstract Base Classes less attractive, then one wasn't using Abstract Base Classes correctly in the first place.

link|flag
As the original question points out, abstract classes are certainly not obsolete. It is also true that there will be many cases where extension methods + interfaces provide a complete and better alternative to abstract classes. – Daniel Pratt Mar 16 at 20:18
... I'm aware of that. I never said they couldn't be a better alternative - however I do say that if you employ this method, you're doing nothing other than using static methods to "extend" a class. Which in reality is not extension. – Erik Mar 16 at 20:20
And thanks for the downvote... – Erik Mar 16 at 20:20
Yeah, I felt bad about that, but it got me another badge, so it was worth it ;-) – Daniel Pratt Mar 16 at 20:30
Grats - glad I could help out. =) – Erik Mar 16 at 20:37
show 5 more comments
vote up 3 vote down

No, it will reduce some missuses of abstract classes.

An abstract class should contain default implementations/behaviors the subclasses can override. If factored appropriately, this means you could override just a single behavior of the class, and work with the defaults for the rest. Extension methods provide something really different to this.

link|flag
vote up 2 vote down

I do like extension methods because it has given me the ability to define Find(Predicate), Remove(Predicate) etc on IList<T> which I have been missing. I do not think you can say they are a replacement for abstract classes.

I have also defined extension methods to add generic behavior. I love my ToJson extension method on object or ToXml quite handy.

The only problem I have with your example is I always look IsCurrentUser as a property not a method and alas we have no extension properties. But I'm nitpicking

They are completly unrelated. I use an abstract class when I want to model a behavior, that others will implement or inherit.

link|flag
Don't forget IEnumerable<T>.ForEach(...); – Erik Mar 16 at 19:56
Ohhh I have that one plus I have ReadOnlyCollection...I've not written them all yet but I keep adding to my little collection – Josh Mar 16 at 19:58
I think everyone's got a little collection - I have readability extension methods on IComparable<T> (IsGreaterThan, IsLessThan, etc), IEquatable<T> (IsEqualTo, IsNotEqualTo), etc. – Erik Mar 16 at 20:01
I even toyed around with extensions on Int32 - consider: 5.Times(i => Console.WriteLine(i)); – Erik Mar 16 at 20:01
But that's just silly. =P – Erik Mar 16 at 20:04
show 1 more comment
vote up 1 vote down

No, abstract classes are not less attractive. Abstract classes provide the proper paradigm for object hierarchies.

Extension methods are only really useful if you need to add instance methods to an already existing class but can't modify the code directly.

link|flag
1  
The performance characteristics should be the same because extension methods are linked in at compile time. Can you cite something that shows this is true? – BC Mar 16 at 19:54
Do you have proof Abstract classes are faster? Please provide. If you look IL all an extension method is a static method call...I would be shocked if that is slower then calling a method on an abstract particularly a virtual method. – Josh Mar 16 at 19:54
Not to mention performance is one of the last things I tend to look at when deciding whether to use an ABC or an extension method... Architectural concerns come first; performance after profiling. – Erik Mar 16 at 19:55
Hrm... I've been mislead, removed my comment about performance. – Ben S Mar 16 at 19:56
You've also been mislead regarding the purpose of extension methods - they do not add instance methods; they are only syntactic sugar on top of static methods. Extensions do not violate encapsulation - that is, they cannot access private state. – Erik Mar 16 at 19:57
show 4 more comments
vote up 1 vote down

Extension methods are nice, but you can't compare them or their usage to abstract classes. Don't forget what encapsulation is, it's one of the pillar of OOP...

link|flag
vote up 0 vote down

I think it depends on your use-

If your main concern is refactoring to minimize the number of source files and/or classes in an assembly, then yes, extension methods are definitely the way to go, and abstract classes will probably end up being used less.

However, for those who care more about what abstract classes represent conceptually, not much has changed. It still makes sense in a code-organizational context to put "public int getCalories()" in abstract class "Food", as it'd be silly for the person eating it (the code using a subclass of food) to define how many calories it has.

link|flag
vote up 0 vote down

In a word: Yes. Due to the fact that abstract classes impose a lot on future implementations, general advice seems to be to create abstract classes that implement interfaces (e.g. DBDataReader : IDataReader). So long as a method does not require access to the internal state of an object, I see no reason not to render it as an extension method. You get the functionality without the cost.

link|flag
I like your take. – BC Mar 16 at 20:02
No, no you don't get the same functionality. This is a common misconception regarding extension methods. With his specific example you do, technically - but with abstract base classes you have access to internal private state that extension methods (being static methods) are still denied. – Erik Mar 16 at 20:04
Where did I say that you get the same functionality? Please re-read the (last - 1) sentence of my answer. – Daniel Pratt Mar 16 at 20:10
It's still not the same functionality - classes compiled without a reference to the extension method assembly cannot use the extension method (via reflection for instance), whereas if the base class had been modified they would. – Erik Mar 16 at 20:14
Either I don't understand your point or you a grasping at straws. How often is a compiled class coded in such a way as to access methods added to a base class after the deriving class is compiled? – Daniel Pratt Mar 16 at 20:22
show 11 more comments
vote up 0 vote down

I think there are absolutely cases where this is a good idea. Linq is a great example of the benefits, but there is another: streams.

The whole reason streams are an abstract class is because they had to support methods like BeginRead, ReadByte, etc. Stream could be an interface, and all of those methods could be extension methods instead. This would make it possible to do things like inherit from a non-stream class and add stream functionality, and make it (more) natural to add potentially useful stream methods like 'dump stream contents to memory buffer'.

link|flag
vote up 0 vote down

If you don't need to access private fields from the extension method, then it's AFAIK the way to go, since you can inherit multiple interfaces and get all the related extensions this way (while you can only derive from a single abstract class).

Not sure what happens if extension method names collide, though?

link|flag
vote up -1 vote down

I have not used anything past .NET 2.0, so I had no idea you could do that. Seems weird to me; interfaces are not for implementations. I would find that confusing. Also, the example that you show is a class, not an interface.

link|flag
That's just the extension wrapper. IUser is an actual interface. – BC Mar 16 at 19:50
Still seems odd to me, but I haven't worked with anything above .NET 2.0, so I have things to learn once we switch over. – Ed Swangren Mar 16 at 21:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.