vote up 1 vote down star

In the application I am writing I have a Policy class. There are 4 different types of Policy. Each Policy is weighted against the other Policies such that PolicyA > PolicyB > PolicyC > PolicyD.

Who's responsibility is it to implement the logic to determine whether one Policy is greather than another? My initial thought is to overload the > and < operators and implement the logic in the Policy type itself.

Does that violate the SRP?

flag

44% accept rate

5 Answers

vote up 5 vote down

I would think that a PolicyComparer class should do the evaluation.

link|flag
vote up 0 vote down

I think you are on the right track with the overload however the extension of this is obviously a lot longer

if (A > B || B > C || C > D) ...

link|flag
vote up 0 vote down

You could also store a PolicyWeight attribute in your class, that being a simple built-in type ( int, unsigned int, ... ) which can then be easily compared.

link|flag
vote up 0 vote down

Certianly a dedicated comparer class. If you ever need to provide additional logic (e.g. have two or three different ways of comparing policies), this approach allows you more flexibility (not achievable through operator overloads).

link|flag
vote up 0 vote down

You want a PolicyComparator class. If you want to override < and >, that's fine, but do that overriding in the Policy base class, and have those implementations utilize PolicyComparator to do it.

link|flag

Your Answer

Get an OpenID
or

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