1. Divergent Changes: Software programs are structured to make them easily adaptable to changes. "Divergent changes occur when a class is change is different ways for different reasons"
2. Shortgun Surgery: Shortgun surgery occurs, when a programmer makes a change in one specific class. This one change forces the programmer to make additional small adjustments in various places at different classes.
3. Feature Envy *: This type of smell occurs when a method from one class begins accessing most methods belonging to other classes.
4. Data Clumps*: Dat a clumps smell occur when you find three or more data items together at lots of various locations. For example, fields in a couple of classes or parameters to methods.
5. Primitive Obsession: Sometimes it is more useful to create a lightweight class for specific purpose rather than using primitive data types separately. For instance, it is more appropriate to combine and create an employee class using integers and strings as data members rather than using the data type separately.
6. Parallel Inheritance Hierarchies: This is a special case of shotgun surgery; Every time one creates a subclass of a particular class, it becomes necessary to create additional sub classes of some other class to match the modification.
7. Temporary Field *: Temporary field are those data members of a class that are only occasionally used.
8. Message Chain: This smell can be explained in the following manner. A client's request for a specific object from another object is redirected from object, to object, to object, and so on.
9. Refused Bequest *: Thi s smell occurs due to wrong class hierarchy, when the child class inherits all the unwanted data members and methods of the parent class.
10. Middle Man: I f a class is not performing any useful task and acting as a delegate, then it is advisable to remove the class from the hierarchy.
11. Inappropriate Intimacy: This type of smell occurs when classes access too many private data members of each other.
1. Divergent Changes: Software programs are structured to make them easily adaptable to changes. "Divergent changes occur when a class is change is different ways for different reasons"2. Shortgun Surgery: Shortgun surgery occurs, when a programmer makes a change in one specific class. This one change forces the programmer to make additional small adjustments in various places at different classes. 3. Feature Envy *: This type of smell occurs when a method from one class begins accessing most methods belonging to other classes. 4. Data Clumps*: Dat a clumps smell occur when you find three or more data items together at lots of various locations. For example, fields in a couple of classes or parameters to methods. 5. Primitive Obsession: Sometimes it is more useful to create a lightweight class for specific purpose rather than using primitive data types separately. For instance, it is more appropriate to combine and create an employee class using integers and strings as data members rather than using the data type separately. 6. Parallel Inheritance Hierarchies: This is a special case of shotgun surgery; Every time one creates a subclass of a particular class, it becomes necessary to create additional sub classes of some other class to match the modification. 7. Temporary Field *: Temporary field are those data members of a class that are only occasionally used. 8. Message Chain: This smell can be explained in the following manner. A client's request for a specific object from another object is redirected from object, to object, to object, and so on. 9. Refused Bequest *: Thi s smell occurs due to wrong class hierarchy, when the child class inherits all the unwanted data members and methods of the parent class. 10. Middle Man: I f a class is not performing any useful task and acting as a delegate, then it is advisable to remove the class from the hierarchy. 11. Inappropriate Intimacy: This type of smell occurs when classes access too many private data members of each other.
การแปล กรุณารอสักครู่..
