Primitive obsession smell

From CSSEMediaWiki
(Difference between revisions)
Jump to: navigation, search
m (category)
m (See also)
 
Line 5: Line 5:
 
== See also ==
 
== See also ==
 
* [[Code smells]]
 
* [[Code smells]]
 +
 +
{{Template:CodeSmells}}
  
 
[[Category:Code smells]]
 
[[Category:Code smells]]

Latest revision as of 09:33, 14 October 2009

This smell occurs when a programmer uses primitives to represent a concept in the program rather than creating a small class for it instead. Creating a class to represent a concept means that you can add behavior to it and group several data items together that belong together.

If this occurs, you should Replace Data Value with Object or if there are several fields that should go together you should use the refactoring Extract Class.

See also


Personal tools