Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
8answers
8k views

Real World Example of the Strategy Pattern

I've been reading about the OCP principal and how to use the strategy pattern to accomplish this. I was going to try and explain this to a couple of people, but the only example I can think of is ...
9
votes
4answers
928 views

Strategy Pattern with no 'switch' statements?

I've been doing some reading on the Strategy Pattern, and have a question. I have implemented a very basic Console Application below to explain what I'm asking. I have read that having 'switch' ...
7
votes
4answers
609 views

Trying to understand the wikipedia strategy pattern example using new Func<int, int, int>

I was looking at this, http://en.wikipedia.org/wiki/Strategy_pattern and I understand the concept of the strategy pattern, but could someone explain the C# example a bit. I dont really get the how ...
7
votes
6answers
2k views

What is the difference between Strategy Design pattern and State Design pattern?

What is the difference between Strategy Design pattern and State Design pattern? I was going through quite a few articles on the web but could not make out the difference clearly. Can somebody please ...
6
votes
2answers
100 views

Best way to validate a String against many patterns

This is a question more about best practices/design patterns than regexps. In short I have 3 values: from, to and the value I want to change. From has to match one of several patterns: XX.X >XX.X ...
6
votes
3answers
448 views

Strategy Design Pattern- choosing between strategies with counters

I am programming in Java but this is a more of a design question so any OO programmer could probably answer this question. I have a question concerning the Strategy design pattern. Here are several ...
6
votes
5answers
296 views

Saving Data with the Factory Pattern?

I've been becoming more familiar with the Factory Pattern (along with Strategy Pattern) and what a great benefit the pattern can have. However, I've been struggling with the following situation: ...
6
votes
1answer
2k views

Strategy Pattern and Dependency Injection using Unity

I am finally getting my feet wet with Dependency Injection (long overdue); I got started playing with Unity and run into an issue with the strategy pattern. I can use the container to return to me ...
5
votes
2answers
66 views

Is there a built-in Java type that guarantees an execute(T t) method?

It seems the need for a type like the following would be so ubiquitous that something like it should be already built into Java: public interface Executer<T> { void execute(T object); } It ...
5
votes
3answers
504 views

Better alternative to Strategy pattern in Scala?

When I'm programming in Java (or a similar language), I often employ a simple version of the Strategy pattern, using interfaces and implementation classes, to provide runtime-selectable ...
5
votes
3answers
377 views

What is the difference between Strategy pattern and Dependency Injection?

Strategy pattern and Dependency Injection both allow us to set / inject objects at run time. What is the difference between Strategy pattern and Dependency Injection?
5
votes
3answers
156 views

Is this code too brittle?

I need to create a strategy pattern where a user selects four strategies from a list of twenty or thirty unique strategy objects. The list of strategies will be expanded as the project matures, and ...
5
votes
8answers
360 views

How to use the Strategy Pattern with C#?

Here's what I have so far: namespace Strategy { interface IWeaponBehavior { void UseWeapon(); } } namespace Strategy { class Knife : IWeaponBehavior { public void ...
5
votes
6answers
302 views

Which design pattern is most appropriate?

I want to create a class that can use one of four algorithms (and the algorithm to use is only known at run-time). I was thinking that the Strategy design pattern sounds appropriate, but my problem is ...
5
votes
3answers
537 views

In the strategy pattern can the strategy take the Context as parameter

Feedback summary I will now close this thead (I think there will be no more feedback) and try to summarize what I understood using the "Context" as a parameter for my strategy introduces a tight ...
5
votes
3answers
642 views

Does this Java Strategy pattern have a redundant Context class?

The following code sample is an implementation of the Strategy pattern copied from Wikipedia. My full question follows it... The Wiki's main method: //StrategyExample test application class ...
5
votes
6answers
463 views

Help with strategy pattern

I've been going through Head First Design Patterns (just came in recently) and I was reading about the strategy pattern, and it occurred to me that it might be a great way to implement a common way of ...
5
votes
8answers
2k views

Where is the benefit in using the Strategy Pattern?

I've looked at this explanation on Wikipedia, specifically the C++ sample, and fail to recognize the difference between just defining 3 classes, creating instances and calling them, and that example. ...
4
votes
4answers
387 views

How to specify exceptions to be thrown by an implementor of an interface

I'm currently developing a solution and have designed it in a way such that it strongly implements the strategy/provider pattern. As such the solution exposes a number of interfaces and contains ...
4
votes
4answers
102 views

Best way to deal with conflated business and presentation code?

Considering a hypothetical situation where an old, legacy presentation library has been maintained over the years, and has gradually had more and more business logic coded into it through a process of ...
4
votes
3answers
414 views

Parametrized Strategy Pattern

I have several Java classes which implement the strategy pattern. Each class has variable number parameters of different types: interface Strategy { public data execute(data); } class ...
4
votes
2answers
779 views

Strategy Design pattern with IOC containers - Ninject specifically

I have a class which is going to need to use the strategy design pattern. At run time I am required to switch different algorithms in and out to see the effects on the performance of the application. ...
4
votes
2answers
74 views

When is it appropriate to create a Decorator for an object, and when is it appropriate to rewrite your object to allow Strategies to be applied?

For example, suppose I have a Product class that I can add to a shopping cart. I may want to be able to package it together with another item when it is also in the cart and add a 15% discount. ...
4
votes
4answers
2k views

C++ Strategy Design Pattern, making an interface array

After having implemented the strategy pattern, I wanted to make an array of the interface-type, to which I can then add any concrete type. For those who don't know the strategy pattern: ...
3
votes
2answers
60 views

Using enums as a container of implementations

I'm currently working on a project where we have to represent a set of vectors in a 3D environment. We have several different visualization implementations. I came to the idea, that I could bundle ...
3
votes
5answers
183 views

Should the strategy pattern be stateless?

Must a class that is a "gang of four" strategy be completely stateless (ie no fields) or can it contain immutable state (ie final fields)?
3
votes
2answers
113 views

Can someone show me a simple example of strategy pattern using scheme?

I am new to design pattern and I am trying to learn the strategy pattern. After reading bunch examples here and on oodesign.com, I have a fair understanding of its intent. However, most example I ...
3
votes
6answers
93 views

Is there a good way to avoid unused method parameter in some of the subclasses while applying strategy pattern?

I have the following scenario where I have different kinds of sales algorithms to calculate the sales price. FixedSaleStrategy does not need basePrice parameter while all the other strategy ...
3
votes
2answers
261 views

Java equivalent of .NET Action<T> and Func<T,U>, etc

Are there any standard generic "callback" or "function/method" types in Java, like System.Action<T> or System.Func<T,U> in .NET? In my concrete case, I need a class that wraps a method ...
3
votes
2answers
2k views

Composite Strategy pattern - java - How bad is this code?

This question is kind of continuation to my earlier post: http://stackoverflow.com/questions/944824/visitor-pattern-implementation-in-java-how-does-this-look I got a bit confused while refactoring my ...
3
votes
2answers
528 views

Emailer in Java using Strategy Pattern

UPDATED: Added one more question (Question #4). Hi all, I'm building myself a custom emailing utility. Now, to obey Single Responsibility Principle, I want to have the following classes: ...
3
votes
4answers
645 views

Can anyone explain how the Strategy Pattern relates to Inversion of Control?

Can anyone explain exactly how the Strategy Pattern relates to Inversion of Control?
2
votes
1answer
74 views

MVC where model has no intrinsic visual representation

I'm developing an application in Java with MVC architecture. Doing so has greatly decoupled and simplified my code, but the problem is that the model has no intrinsic visual representation. That is, ...
2
votes
1answer
127 views

Python Strategy pattern: Dynamically import class files

I am trying to build a software package that fixes arbitrary data inconsistencies in one of my databases. My design includes two classes - Problem and Fix. The problems are SQL queries stored as .cfg ...
2
votes
2answers
304 views

When to use C++ private inheritance over composition?

Can you give me a concrete example when is preferable to use private inheritance over composition? Personally, I will use composition over private inheritance, but there might be the case that using ...
2
votes
1answer
125 views

Trouble with a simple Strategy Pattern example

The error is: FirstPattern.Character.Character' does not contain a constructor that takes 0 arguments Here is the code: public interface WeaponBehavior { void UseWeapon(); } class ...
2
votes
4answers
89 views

Strategy Pattern help needed

There exists interface Algorithm There exists class MathAlgorythm implements Algorithm (returns MathResult, which implements Result) There exists class ChemitryAlgorythm implements Algorithm ...
2
votes
3answers
277 views

When and How Strategy pattern can be applied instead of decorator pattern?

I am learning design patterns and trying to follow Go4 book. On page:179, in the decorator pattern chapter, there is a line which says "..by extending the number of strategies from just one to an ...
2
votes
1answer
247 views

what's the difference between the patterns Strategy, Visitor and Template Method?

I'm in a class where we just learned about these design patterns. However I couldn't see any difference between them. They sound just like the same, creating concrete classes over the abstract one. ...
2
votes
1answer
205 views

Objective C - Strategy Pattern?

I understand the concept of the "strategy pattern" but i am still a little bit confused. Let'say we have a class named Dog Dog has MovementBehaviour (interface) which can be MovementBehaviourNormal ...
2
votes
3answers
409 views

Design pattern for cost calculator app?

I have a problem that I’ve tried to get help for before, but I wasn’t able to solve it then, so I’m trying to simplify the problem now to see if I can get some more concrete help with this because it ...
2
votes
1answer
761 views

How to create a strategy pattern in Objective-C?

I need to develop a strategy pattern where i have a main class with other three classes where i need to refer to the objects of the other three classes using the main class object.To solve this is the ...
2
votes
6answers
637 views

C#: Abstract Strategy base class serving as Abstract Factory for Strategy objects

I am trying to create a web-based tool for my company that, in essence, uses geographic input to produce tabular results. Currently, three different business areas use my tool and receive three ...
2
votes
10answers
646 views

When and why should the Strategy Pattern be used?

When would the Strategy Pattern be used? I see client code snippets like this: class StrategyExample { public static void main(String[] args) { Context context; // Three ...
2
votes
3answers
328 views

refactor help - strategy pattern

The object here is to update the UI. I normally do this on the client however this application uses the code behind. Anyways my question is I am trying to clean up these if else statements and I ...
2
votes
3answers
525 views

Design Patterns - Strategy Pattern

I am a beginner in Design Patterns. Suppose I am developing a C# application to track the development works performed by various members in development team (i.e. a Project Tracker). I am trying to ...
1
vote
4answers
74 views

php percentage chance

This is really more a question of approach, but I'm presenting it in php. Suppose we had a list of four percentages that a give event will occur on iteration. array=('walk the dog'=>.25,'read the ...
1
vote
1answer
63 views

REST client using both Simple XML and Gson libraries: Use common POJOs or adapter pattern?

In my java app (specifically, Android app), I make a REST call (GET). The response could be either XML or JSON. I use a Strategy Pattern which decides what parser to employ based on the Content Type ...
1
vote
2answers
76 views

Implementing Strategy pattern with Reflection

I'm trying to implement the strategy pattern using reflection, i.e. instantiate a new Concrete Strategy object using it's class name. I want to have a configurable file with the class name in it. We ...
1
vote
3answers
120 views

A good design pattern for conditional statements based on the status of multiple variables

I'm working out a method to calculate a total for a shopping cart written in PHP and would like some feedback on a good design pattern for handling the different conditions. I am trying to offer the ...

1 2