Slick V3.3 manual Convert Local to Field, Replace Literal with Constant

Models: V3.3

1 568
Download 568 pages 2.03 Kb
Page 235
Image 235

C++ Refactoring

Convert Local to Field

Moves a local variable from the body of a method into an instance member variable in the current class. References to the local variable are replaced with references to the new data member. This refactoring cannot be used to convert a method parameter to a field.

Figure 6.46. C++ Refactoring: Convert Local to Field

Replace Literal with Constant

Replaces the selected literal with a constant, replacing use of the literal with the new constant.

Figure 6.47. C++ Refactoring: Replace Literal with Constant

213

Page 235
Image 235
Slick V3.3 manual Convert Local to Field, Replace Literal with Constant