vote up 6 vote down star
1

In the usual Strategy Pattern, we make each strategy as a class. Can't we make it a function, and just assign the reference to the function when we instantiate an object, and let the object call that function?

flag

24% accept rate
Have fun with Java in that case :) – Johannes Rössel Jun 8 at 9:38
why? Java can't support reference to function? – Jian Lin Jun 8 at 9:42
5  
+1 for thinking critically about Design Patterns. I'd say many design patterns stem from the root of the incapability of the language. So in many instances, design patterns are not bibles :) – kizzx2 Jun 8 at 9:45

5 Answers

vote up 2 vote down check

In the simplest cases, you can replace Strategy patterns with a function pointer. However, consider this case

class HourlyPayStrategy implements PayStrategy
{
    public int calculate()
    {
        int x = doComplexOperation1();
        int y = doComplexOperation2();

        return x + y;
    }

    private int doComplexOperation1()
    {
        // ...
    }

    private int doComplexOperation2()
    {
        // ...
    }
}

If we just gave a simple function pointer, things start getting really hairy because you can no longer refactor that thing (well, at least not in an well encapsulated way).

link|flag
vote up 4 vote down

Depends on the language. In C#, you could make it a delegate. In Java, it would rather be a anonymous class. In C++, you could really make it a function pointer.

link|flag
vote up 2 vote down

Sure, although by using objects you can take advantage of inheritance in ways that you couldn't with just functions.

link|flag
vote up 1 vote down

In C# you can use delegates with the strategy pattern. Take a look at this blog post for an example.

link|flag
vote up 1 vote down

What happens below the hood in most C++ implementations is almost what you suggest. The compiler usually resolves a call Strategy.virtualMethod() like this (in pseudo code):

  (Strategy.pVtable[indexOfVirtualMethod])()

So if your only concern is the one more dereferencing of a pointer (pVtable) you should really profile first if you cannot identify more serious hotspots.

My feeling is that your code will be much harder to understand and maintain when you use a function pointer instead of a strategy object.

link|flag

Your Answer

Get an OpenID
or

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