vote up 3 vote down star
1

I'm running a refactoring code dojo for some coworkers who asked how refactoring and patterns go together, and I need a sample code base. Anyone know of a good starting point that isn't to horrible they can't make heads or tails of the code, but can rewrite their way to something useful?

flag

3 Answers

vote up 5 vote down check

I would actually suggesting refactoring some of your and your coworkers' code.

There are always places that an existing codebase can be refactored, and the familiarity with the existing code will help make it feel more like a useful thing and less like an exercise. Find something in your company's code to use as an example, if possible.

link|flag
vote up 2 vote down

The first chapter in Martin Fowler "Refactoring" is a good starting point to refactoring. I understood most of the concepts when one of my teachers at school used this example.

link|flag
Thanks. I've found the sample code at david.koontz.name/home/Projects/… via refactoring.com because of your suggestion. I'll check it out. – Ball Jul 27 at 19:38
vote up 0 vote down

What is the general knowledge level of your coworkers?

Something basic as code duplication should be easy to wrap their heads around. Two pieces of (nearly) identical code that can be refactored into a reusable method, class, whatever. Using a (past) example from your own codebase would be good.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.