vote up 2 vote down star

Can anyone recommend a website, book, or simply a list of refactoring strategies for procedural languages as opposed to object oriented languages?

Everything I was able to find contained some strategies that could apply, most were useful only if working in an OO language.

flag

4 Answers

vote up 3 vote down check

Thinking Forth has lots of really good advice about refactoring. I am also very fond of David Parnas' paper On The Criteria to be Used in Decomposing Systems into Modules.

link|flag
vote up 0 vote down

Really? That's odd, as the most basic refactoring concept ("find common code and pull it out into a separate function") works at least as well in procedural code as OO code.

link|flag
No it doesn't. It's much harder to factor procedural code into a common location because it's more difficult to delegate "inner" calls to the correct handler. Only OO code written by a procedural programmer (like C++ generally is) is that difficult. – Bill K Nov 19 '08 at 17:09
vote up 1 vote down

Refactoring isn't explicitly an OO concept. People have been refactoring C code for years. Barring anything that's related to OO (such as refactoring inheritance into composition), the standard stuff applies, e.g., move duplicate code into a single function (as James mentions).

link|flag
Newish basic has as much (or more) OO structure as any other language. – Bill K Nov 19 '08 at 17:11
vote up 0 vote down

Take a look at Working Effectively with Legacy Code by Michael Feathers.

link|flag

Your Answer

Get an OpenID
or

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