vote up 0 vote down star
2

If the Single Responsibility Principle states that every object must have a single reason to change and a single strategy class implemented with the Strategy pattern (by definition) has multiple methods that can change for any number of reasons, does that mean that it's impossible to implement the Strategy pattern without violating the SRP?

flag

47% accept rate
I don't quite get what you mean by "a single strategy class implemented with the Strategy pattern (by definition) has multiple methods that can change for any number of reasons". What's the definition you're thinking of? – Ionut G. Stan Apr 28 at 7:38
I'm thinking of the classical GOF definition of the strategy pattern, which is a single policy class with a set of logically related methods – plaureano Apr 29 at 7:26

3 Answers

vote up 2 vote down check

How so? Strategy pattern if I recollect is basically a way to decouple the logic/algorithm being used. So Client has m_IAlgorithm. IAlgorithm should have a small set of methods if not one.

So the only reason that a AlgoImplementation class can change is

  • if there is a change in the algorithm it implements. (change in its responsibility/behavior)
  • or if IAlgoritm changes.. which would be rare unless you made a mistake in defining the interface. (Its a change in its own public interface - so don't think its a violation of SRP.)
link|flag
vote up 0 vote down

Good Point :) I guess it's more a single responsibility guideline, which makes sense for many cases, but for some also not, like the strategy pattern..

link|flag
vote up 3 vote down

I actually see the opposite. The strategy pattern lets you decouple two things, the (potential) algorithms used to get some job done and the decision making logic about these algorithms.

I'm not sure if you rather have a class which does both conditional logic on which algorithm to use and also encloses those algorithms. Also, I'm not saying you've implied that but you didn't gave an example where Strategy would break SRP and what's, in your opinion, a better design.

link|flag

Your Answer

Get an OpenID
or

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