Switch statement smell

From CSSEMediaWiki
(Difference between revisions)
Jump to: navigation, search
(New page: One of the benefits of Object oriented design is the reduction in the need for switch statements. These can take the form of many if statements or, with better procedural style, a case sta...)
 
m
Line 3: Line 3:
 
If there is a switch statement smell it is an indication that [[refactoring]] is necessary. There are several different situations that will bring about the switch statement smell and each one has a different solution as documented by [[Martin Fowler 1999]].
 
If there is a switch statement smell it is an indication that [[refactoring]] is necessary. There are several different situations that will bring about the switch statement smell and each one has a different solution as documented by [[Martin Fowler 1999]].
  
As explained by Fowler the solution to the switch statement problem is to use [[polymorrphism]].
+
As explained by Fowler the solution to the switch statement problem is to use [[polymorphism]].
  
  

Revision as of 01:33, 19 August 2008

One of the benefits of Object oriented design is the reduction in the need for switch statements. These can take the form of many if statements or, with better procedural style, a case statement. These statements tend to be repeated throughout the code if they exist making maintenance and editing or extending difficult.

If there is a switch statement smell it is an indication that refactoring is necessary. There are several different situations that will bring about the switch statement smell and each one has a different solution as documented by Martin Fowler 1999.

As explained by Fowler the solution to the switch statement problem is to use polymorphism.


The Type Switch:

If the type of an object is being checked to see what process should be applied the solution is to apply extract method and then move method.

Personal tools