- Validate the environment
- Run all tests (
Shift-F10
)
- Run all tests (
We are looking at a large method that we don't understand, and we want to clean up. We are going to "follow our nose", leaning into the places we don't like and pulling out chunks and improving them.
- Automated refactorings "only"
- Commit after each refactoring
- Every refactoring commit prefixed with
r -
- Rotate typist on commit
- Identify a smell
- Improve it
- Evaluate
- Commit (or revert)
-
## Activity 1: Extract Paragraphs to methods
- Identify a paragraph (a
case
) - Extract a method to an Obvious Nonsense name
- Evaluate it at the caller (ignore the body)
- Fix or revert and try again
- Commit
- Repeat until method is small
- Identify a paragraph (a
-
## Activity 2: Move methods onto new classes
- Pick a method
- Move into a better class
- Evaluate at caller
- Commit (or revert)
- Repeat until everything is in it's place
-
## Activity 3: Clean up the main method
- Convert
switch
toif
/else
, commit - Remove redundant
else
in method, commit - Extract condition to a method with a Nonsense name, commit
- Move the method to the corresponding class, commit
- Repeat util strong duplication
- Convert
-
## Activity 4: Remove duplication
- Make similar things identical
- Surround each
if
with a block - Apply Refactoring Combo: Provable Undo to make non-static
- Make each class non-static
- Extract local variables
- Extract interface x 1
- Apply interface x 3
- Use base type x 4
- Apply Refactoring Combo: Many-of-one (two, three, four)
- Extract list of scorers
- Extract apply scorers
-
Missing/Misleading -> (Obvious) Nonsense
-
Nonsense -> Honest (but incomplete)
-
Honest -> Honest-and-complete
-
Honest-and-Complete -> Does the right thing
-
Does the right thing -> Intent
-
Intent -> Domain Abstraction
Insight: A proven-correct refactoring means that the resulting code is the same as the beginning code. Therefore undoing a proven-correct refactoring is also a proven-correct refactoring.
- Verify that Git shows no changes
- Execute manual, unproven refactoring
- Execute automated refactoring to undo #1
- Save All
- Verify that Git shows no changes
- Undo (CTRL-Z) once
- Commit
This is not a proven-correct refactoring.
Given:
SOMETYPE somevar = ...;
// do something with somevar
Becomes:
for (SOMETYPE somevar : new SOMETYPE[]{ ... })
{
// do something with somevar
}
- Add curly braces (
{}
) around the body - Prefix with
for (
- Replace
=
with: new SOMETYPE[]{
- Replace
;
with})
-
Redo today’s coding exercises on your own computer
- Start from the code on the
main
branch - If you want to see the code we wrote together, check the other branches
- Pay attention to:
- how often you're able to execute a single refactoring - more is better
- how many times you are able to pull out a paragraph into a new method
- Start from the code on the
-
Print out this sheet and keep it on your desk. Over the next week as you're doing your normal work:
- note when you were able to improve the code with a single, committed refactoring
- note when you extract a paragraph
- Make a TODO list of code you wish was better but couldn't improve at this time