The strategy pattern (also known as the policy pattern) is a software design pattern, whereby an algorithm's behavior can be selected at runtime.

learn more… | top users | synonyms

-1
votes
1answer
61 views

Differences between MVC pattern and other 2 patterns [closed]

Can you tell me if it is Factory, Strategy or MVC design pattern? public interface MainObject<T> { void add(); T get(); } class Person1 : MainObject<Person1> { public ...
0
votes
1answer
51 views

Difference between Strategy Pattern and State Pattern using example

Although there are many questions over the same topic, none of them cleared my confusion completely. So I am attempting to put an example and its solution with both patterns. Please tell me if I am ...
-1
votes
1answer
39 views

How can I force the redefinition of a constructor?

is there any possibility to force the redefinition of a constructor? I have a base abstract class public abstract class AbstractBaseClass { private AStrategy as; private ...
0
votes
2answers
67 views

C# strategy and observer pattern code

Hi I'm trying to create abstract class Person and two child classes Student and Staff. Person class also has an observer that is notified by a Practical class. But Students will be notified only about ...
0
votes
1answer
61 views

OOD: Using factory pattern in combination with strategy pattern

There are a few questions already on Stackoverflow with similar scenarios, but they don't really address my case. I am currently doing some refactoring and would like to make the code more robust, ...
5
votes
0answers
86 views

Which of these design patterns is superior? [migrated]

I find I tend to design class structures where several subclasses have nearly identical functionality, but one piece of it is different. So I write nearly all the code in the abstract class, and then ...
1
vote
2answers
69 views

OO programming issue - State Design Pattern

I have spent the last day trying to work out which pattern best fits my specific scenario and I have been tossing up between the State Pattern & Strategy pattern. When I read examples on the ...
1
vote
1answer
52 views

Policy based design: how to customize the Host structure in a proper way?

I have a bunch of algorithms and collections, and I am using a Policy Based design (see the book Modern C++ Design) to deal with arbitrary combinatorial complexity. This is great, but in order to ...
2
votes
0answers
88 views

UML Class Diagram for Strategy Pattern

I have an exam in a couple of hours and I am trying to solve sample questions for it. I couldn't find a solution to following question. Draw a class diagram corresponding to the following ...
0
votes
2answers
50 views

How to use strategy pattern with Ninject

I have two repositories AlbumRepository with interface IAlbumRepository and CachedAlbumRepository with interface IAlbumRepository which has constructor interface IAlbumRepository. I need inject with ...
0
votes
0answers
52 views

Is this right usage of Strategy pattern

I have a complex Network represented as hypergraph Hypergraph vertices are from various type:image,tag .... I have also various type of hyper-edge that relate vertices Homogenous HyperEdge ...
0
votes
1answer
45 views

Implementing the Strategy Pattern against generated pojos

I am writing a parser for a couple of different DB tables. We're using Hibernate with Eclipse, and we've made hbm.xml mapping files that correspond to our tables so that our .java files are generated ...
0
votes
3answers
105 views

Strategy Design Pattern (with argument method) - JAVA

I'm writing an algorithm which works on a bit serie and do some operations such as shift, AND with it. I wanted to test the algorithm with two different data structure : MutableBigInteger and ...
1
vote
0answers
61 views

factory, strategy and enum [closed]

I want to refactor my code. In the current code one enum is used for two purposes. Deciding what object to create Deciding what method to call on an existing webservice I want to refactor this to an ...
3
votes
2answers
79 views

Decorate a char* and char const* by pointer acquisition : good practice?

Hello I wanted to poll the public about my idea of doing a string class (like std::string) that would have a feature of being able to work on buffers provided by the client. What are the dangers that ...
0
votes
1answer
46 views

Strategy Pattern in “real life”

I'm trying to transform wikipedia examples of strategy pattern to real life problems, but I'm not sure if my scenario does require such pattern. say we a have a service that gets updates from several ...
0
votes
2answers
100 views

Is this a correct implementation of the Strategy pattern with the FizzBuzz exercise?

I've recently had a real world use for the Strategy pattern. I find myself with hammer/nail syndrome where this pattern is my hammer and everything else is a nail. For kicks, I decided to try ...
0
votes
1answer
61 views

Trouble implementing strategy and composite pattern to give varying behaviour in a game

I'm running into real trouble trying to complete a practical that requires using strategy and composite pattern. I am trying to create a collection of vehicles which can have different behavior ...
0
votes
2answers
72 views

Something it is wrong in implementation of Strategy Pattern in c#

I am trying implement a Strategy pattern with nested classes. public class Restriction { protected SpecificRestriction _specificRestriction; public void SetGreaterRestriction(decimal value) ...
0
votes
0answers
45 views

Startegy Design Pattern can have Dao Services in the contract

For our Member Acquisition module i am trying to implement Dependency Injection & Strategy Design Pattern as our main design pattern. The Acquisition could be of any form from Paid Services, Free ...
2
votes
1answer
51 views

Which design pattern for dispayling custom editors according to objects instance?

I have several objects that all extend a Shape basic class. For every object I want to display a different object editor, as eg a Line has different properties to edit than a Rectangle. class Shape; ...
0
votes
0answers
28 views

Configurable step selection in Strategy pattern [closed]

I have a component that provides some functionality to multiple clients. This functionality is broken down into a sequence of steps. The use of strategy pattern seems like a good idea. It is very ...
0
votes
0answers
45 views

Organising dependency injection with related strategies configured by a common value?

Oh wise and ineffable Usenet Oracle, I'm using simple static DI in Java - a family of static 'Injector' classes mirroring the interface tree, which call amongst themselves to build the object tree. ...
3
votes
5answers
134 views

How to refactor large class that uses “Strategies”?

Problem I have a large class (about 1500 LOC) and it uses different "strategies" to transform data from one object to another. I have here a representation of that class: public class FooService ...
1
vote
3answers
131 views

why we implement interface to abstract class

Pls find the link for reference: "Strategy for success" article of JavaWorld My question is why do we need to have separate interface and implement it in abstract class, when we can declare those ...
0
votes
1answer
93 views

Java Strategy design pattern context class clarification

I have been doing a lot of reading on this but, I feel like I am misunderstanding the role of the context class. This is my primary class that creates the tree structure. package bintree; /** ...
0
votes
2answers
109 views

C++ passing an unknown type to an object which has an abstract base

I have another question following on from my previous question about abstractions, I have another problem in relation to setting data at the event once it has been created. As things stand, I can ...
1
vote
0answers
82 views

Strategy Pattern or Interface?

I'm looking to abstract a helper method. The method needs to be able to take in an object, do things with it depending on the type of object, and return a value. Would it be better to do something ...
-1
votes
2answers
73 views

Strategy and Observer pattern prints nothing [closed]

I'm trying to write some simple Python code to turn aCaterpillarinto aButterfly` (both are and inherit from creatures), both with move behaviors Crawl and Fly, respectively, using both the Strategy ...
1
vote
1answer
109 views

Regarding favoring composition over inheritance approch, STRATEGY pattern

I was ask an question in an interview that was lets say there's the class A with a method drawShape() and there's an another class B with the method drawSquare(). Now there's a third class C. In my ...
6
votes
1answer
330 views

How can a delegate respond to multiple events with a generic and extensible class?

I have rigged up a technique to handle multiple subreports in an rdlc report, but as I have tried to make it generic and repeatable, I have instead had to take the model and tweak it slightly for each ...
-1
votes
1answer
72 views

Difference between Vistor pattern and Stategy pattern?

I read about visitor pattern at http://en.wikipedia.org/wiki/Visitor_pattern Initial understanding of this pattern created impression that visitor pattern is same as Bridge/Strategy pattern. So is ...
-1
votes
3answers
134 views

Strategy pattern executing two or more algorithms

Can anyone make me an example of a strategy pattern that use not one,but two or more algorithms in sequence?? Maybe have i to insert those algorithms in a list and then with a for execute all ...
1
vote
0answers
60 views

Implmenting strategy pattern with Enums conflicts with Generics [duplicate]

I am trying to implement Strategy using Enums in Java. So I write an enum as follows: public enum Command { COMMAND1(new Command1Processor()), COMMAND2(new Command2Processor()); protected ...
0
votes
2answers
93 views

Strategy pattern and iterator on all algorithms

I have a list of algorithms that I want to run on an image for denoise it. I have several different algorithms for denoising my pics. Say I have denoise_1 and denoise_2 and denoise_3. But in the ...
0
votes
1answer
73 views

How to test a Factory / Strategy implementation with PHPUnit

I have a Factory class that returns a writer strategy based on the extension of a given file: public static function getWriterForFile($file) { // create file info object $fileInfo = new ...
1
vote
2answers
63 views

Strategy Pattern with derived alogrithms calling methods on context

I am in need for some design help. I have a class, let's call it a spaceship which can implement several behaviors. I've defined an interface to declare the operations each behavior supports. Until ...
2
votes
1answer
141 views

Algorithm: Maximizing profit in card game with m winning cards and n losing cards

Let's say a Casino (C) has a game which involves only one player and one dealer. The game is played with m+n cards, m are marked as winning cards and 'n' as losing cards. Rules/Information regarding ...
1
vote
2answers
75 views

Does the compile warning point to bad design? [duplicate]

Possible Duplicate: How to suppress Java compiler warnings for specific functions I would like to use a Map to implement the Strategy pattern. However, I cannot find a way of doing this in ...
0
votes
3answers
109 views

Do I have to compose every method in my main class in order to use it (Strategy pattern)?

I've been using this tutorial to look into the Strategy pattern. I receive the output he talks about, but it seems like there is no option to use the digHole() method. When I call the method in the ...
0
votes
1answer
76 views

parameterized strategy pattern in MEF

I have three types of algorithms, each take a different parameter type needed for prcoessing. class AlgorithmA { Execute(int param); } class AlgorithmB { Execute(string param); } class ...
1
vote
1answer
109 views

Strategy Pattern with Dummy concrete strategy

Refering to posted question here, could you please comment if this is good approach to solve OPTIONAL behaviour for extending class, by using composition, not inheritance. Plannable behaviour is here ...
0
votes
1answer
50 views

How to map classes in Hibernate that only have behavior?

i'm mapping some classes in hibernate, these classes are basically a strategy pattern. I have a class "User" that knows an abstract class "UserType" that declares an abstract method ...
0
votes
1answer
188 views

Using Factory with Strategy design pattern

Okay, so I have been given an assignment where I am asked to use both the Strategy and Factory design patterns. Here is the problem: You are developing an application for a bank to use for handling ...
0
votes
2answers
207 views

strategy design pattern

Hi everyone I am trying to implement the strategy pattern but I can not set the amount in the concrete classes, what i mean is that the amount is remianing the same as the one in the helper class that ...
3
votes
1answer
117 views

Strategy pattern in domain model

I am encountering an example where the strategy pattern in a domain model should be used. I have a User class representing users of the system. Each user may receive requests while using the system. ...
2
votes
3answers
125 views

What caching strategy for search queries

We are developing a search engine web application that will enable users to search the content of about 200 portals. Our business partner is taking care of maintaining and feeding a solr/lucene ...
1
vote
2answers
164 views

Recursive Strategy Pattern

I am designing some classes for my project in C++ at the moment but I got a problem. I want to create a camera class which holds all the needed values (e.g. transformation matrices) but the function ...
0
votes
1answer
31 views

Mobile strategy: How to handle this server-client version permutation?

We are hosting a SAAS application for clients. The main app is a web appliction and different clients can be on different versions. e.g.: Company A version 1.0 Company B version 1.1 We also have ...
0
votes
1answer
166 views

Why we need Context class in strategy design pattern?

Why need Context class in strategy pattern? for example, i want to compress files using either zip or rar compression. we can solve this using strategy pattern with following files. ...

1 2 3 4 5