Refactoring is a disciplined technique for restructuring an existing body of code, altering its internal structure without changing its external behavior.
289
votes
34answers
7k views
OK, so I'm not a beginner anymore. What comes next? [closed]
In a certain sense, I'm still very much a beginner, but I don't need to read C++ Primer or Learn C++ in 21 Days, or at least, I only take a peek every now and then for reference's sake. So what is my ...
131
votes
13answers
16k views
Method can be made static, but should it?
Resharper likes to point out multiple functions per asp.net page that could be made static. Does it help me if I do make them static? Should I make them static and move them to a utility class?
119
votes
17answers
43k views
How to find unused/dead code in java projects
What tools do you use to find unused/dead code in large java projects? Our product has been in development for some years, and it is getting very hard to manually detect code that is no longer in use. ...
109
votes
25answers
3k views
What is the best way to explain refactoring to non-technical people? [closed]
We have a project on at the moment where we are refactoring an application that works fine for the moment but under the hood is beyond help. We need to rewrite it so that changes and maintenance can ...
96
votes
38answers
4k views
How do you stop yourself from refactoring working but awful code?
I have this problem. I can't stop myself from refactoring existing code that works but is, in my opinion (and perhaps objectively), badly designed or contains other "code smells". This can have a ...
92
votes
11answers
17k views
Is there a working C++ refactoring tool?
Does anybody know a fully featured refactoring tool for C++ that works reliably with large code bases (some 100.000 lines)?
I tried whatever i can find again and again over the last years: SlickEdit, ...
87
votes
21answers
15k views
Unit testing for C++ code - Tools and methodology
I'm working on a large c++ system that is has been in development for a few years now. As part of an effort to improve the quality of the existing code we engaged on a large long-term refactoring ...
81
votes
36answers
8k views
What ReSharper 4+ live templates for C# do you use? [closed]
What ReSharper 4.0 templates for C# do you use?
Let's share these in the following format:
[Title]
Optional description
Shortcut: shortcut
Available in: [AvailabilitySetting]
// Resharper ...
74
votes
21answers
3k views
When do you know it's time to rewrite an application
This is humbling, but probably something most can relate to. I am currently adding functionality to a PHP application I wrote for a client 2 years ago. In the interest of full disclosure, this was ...
72
votes
16answers
5k views
Tools to identify code duplications
I have being reading and tracking some questions on code reuse and I have this question:
Are there any tools to identify duplicate or similar code?
I have googled this a while ago and found nothing ...
70
votes
17answers
12k views
C/C++: Detecting superfluous #includes?
I often find that the headers section of a file get larger and larger all the time but it never gets smaller. Throughout the life of a source file classes may have moved and been refactored and it's ...
69
votes
12answers
3k views
Is it OK to have a class with just properties for refactoring purposes?
I have a method that takes 30 parameters. I took the parameters and put them into one class, so that I could just pass one parameter (the class) into the method. Is it perfectly fine in the case of ...
67
votes
12answers
21k views
Find unused code
I have to refactor a large C# application, and I found a lot of functions that are never used. Is there a tool that can check for unused code, so I can remove all the unused functions?
54
votes
3answers
2k views
Coding Katas for practicing the refactoring of legacy code
I've gotten quite interested in coding katas in recent months. I believe they are a great way to hone my programming skills and improve the quality of the code I write on the job.
There are numerous ...
52
votes
6answers
9k views
How to make Databinding type safe and support refactoring
When I wish to bind a control to a property of my object, I have to provide the name of the property as a string. This is not very good because:
If the property is removed or
renamed, I don’t get a ...
52
votes
14answers
17k views
Tools for PHP code refactoring
Are there any tools which support refactoring PHP code (renaming variables, extracting methods, finding method references, ...)? Thank you.
50
votes
1answer
2k views
Error in Preview of Custom Eclipse refactoring
I am implementing an new eclipse refactoring. This will enable developers to Pull-up the preconditions statements from a child method to the parent method.
This all works perfectly when I select ...
49
votes
29answers
3k views
When is it good (if ever) to scrap production code and start over? [closed]
I was asked to do a code review and report on the feasibility of adding a new feature to one of our new products, one that I haven't personally worked on until now. I know it's easy to nitpick someone ...
49
votes
6answers
20k views
Rename a class in Xcode: Refactor… is grayed out (disabled). Why?
Why is Refactor... grayed out (disabled) in Xcode?
I'd like to rename a class.
48
votes
11answers
11k views
What tool to find code duplicates in C# projects? [closed]
What tool would you recommend for finding code duplicates in C# code?
45
votes
7answers
2k views
I use C-Style casts in my C++ project, is it worth refactoring to C++ casts?
I use C-Style casts in my 15K lines C++ project, 90% of the times for casts between child and base classes.
Even when I read that it is bad to use them, and that they can result in severe errors, as ...
39
votes
25answers
2k views
How often should you refactor?
I had a discussion a few weeks back with some co-workers on refactoring, and I seem to be in a minority that believes "Refactor early, refactor often" is a good approach that keeps code from getting ...
39
votes
6answers
3k views
Coupling, Cohesion and the Law of Demeter
The Law of Demeter indicates that you should only speak to objects that you know about directly. That is, do not perform method chaining to talk to other objects. When you do so, you are ...
37
votes
9answers
12k views
What are some alternatives to resharper?
I'm considering purchasing a resharper license but would like to know if there are any possible alternatives to resharper and how would you rate these compared to reharper?
It doesn't necessarily ...
35
votes
7answers
7k views
What is the reason behind JSLint saying there are “too many var statements”
JSLint (with the onevar flag turned on) is flagging some javascript code that I have with the following:
Problem at line 5 character 15: Too many var statements.
I am happy to fix these errors, but ...
33
votes
4answers
4k views
is f(void) deprecated in modern C and C++
I'm currently refactoring/tidying up some old C code used in a C++ project, and regularly see functions such as:
int f(void)
which I would tend to write as:
int f()
Is there any reason not to ...
33
votes
7answers
6k views
How to organize MATLAB code? [closed]
How do you organize your Matlab code? I've come into ownership of several thousand lines of Matlab code, some as >900 line functions and a few directories full of function_name.m files. It's hard to ...
33
votes
14answers
8k views
How many constructor arguments is too many?
Let's say you have a class called Customer, which contains the following fields:
UserName
Email
First Name
Last Name
Let's also say that according to your business logic, all Customer objects must ...
32
votes
11answers
1k views
How to update old C code?
I have been working on some 10 year old C code at my job this week, and after implementing a few changes, I went to the boss and asked if he needed anything else done. That's when he dropped the ...
31
votes
15answers
3k views
Do you find cyclomatic complexity a useful measure?
I've been playing around with measuring the cyclomatic complexity of a big code base.
Cyclomatic complexity is the number of linearly independent paths through a program's source code and there are ...
31
votes
5answers
7k views
Any ReSharper equivalent for Xcode?
I'm a complete Xcode/Objective-C/Cocoa newbie but I'm learning fast and really starting to enjoy getting to grips with a new language, platform and paradigm.
One thing is though, having been using ...
30
votes
11answers
5k views
Converting C source to C++
How would you go about converting a reasonably large (>300K), fairly mature C codebase to C++?
The kind of C I have in mind is split into files roughly corresponding to modules (i.e. less granular ...
30
votes
6answers
9k views
What refactoring tools do you use for Python?
I have a bunch of classes I want to rename. Some of them have names that are small and that name is reused in other class names, where I don't want that name changed. Most of this lives in Python ...
28
votes
14answers
5k views
Refactoring if/else logic
I have a java class with a thousand line method of if/else logic like this:
if (userType == "admin") {
if (age > 12) {
if (location == "USA") {
// do stuff
...
28
votes
3answers
2k views
Additional Refactoring for Eclipse CDT
Is there any way to configure or are there any 3rd party plug-ins available for Eclipse CDT (any version) that provide a rich set of refactorings? My refactoring menu only provides the following in ...
27
votes
24answers
5k views
When is a function too long? [closed]
35 lines, 55 lines, 100 lines, 300 lines? When you should start to break it apart? I'm asking because I have a function with 60 lines (including comments) and was thinking about breaking it apart.
...
27
votes
12answers
1k views
Tips for refactoring a 20K lines library
I've already awarded a 100 point bounty to mario's answer, but might start a second 100 point bounty if I see new good answers coming in. This is why I'm keeping the question open and will not choose ...
27
votes
14answers
1k views
How do you refactor a large messy codebase?
I have a big mess of code. Admittedly, I wrote it myself - a year ago. It's not well commented but it's not very complicated either, so I can understand it -- just not well enough to know where to ...
27
votes
8answers
5k views
any C/C++ refactoring tool based on libclang? (even simplest “toy example” )
As I've pointed out - here - it seems clang's libclang should be great for implementing the hard task that is C/C++ code analysis and modifications (check out video presentation and slides).
Do you ...
27
votes
7answers
2k views
Is there a more modern, OO version of “Let's Build a Compiler”?
Is there a more modern, maybe object-oriented, equivalent to Jack Crenshaw's "Let's Build a Compiler" series?
A while back I stumbled across "Let's Build a Compiler" and could just not resist writing ...
26
votes
13answers
5k views
Eclipse: Most useful refactorings [closed]
Every now and again, I make use of the Eclipse refactoring feature. Some techniques are more obvious then others and some I never tried.
What refactoring is most useful for you and why?
Note: I find ...
26
votes
1answer
13k views
Find unused classes in a Java Eclipse project
I have a large Eclipse project in which there exist several classes which, although they ceased to be used anywhere, were never marked @Deprecated.
How can I easily find all of these?
26
votes
10answers
2k views
Find unused code in a Rails app
How do I find what code is and isn't being run in production ?
The app is well-tested, but there's a lot of tests that test unused code. Hence they get coverage when running tests... I'd like to ...
26
votes
5answers
5k views
CSS Refactoring tool? [closed]
Does anyone know of CSS refactoring tools?
Ideally, I would load all of my CSS and have the tool intelligently remove redundant declarations, merge classes, etc, without completely munging it all.
...
25
votes
11answers
1k views
Our code sucks and I'm powerless to fix it. Help! [closed]
Our code sucks. Actually, let me clarify that. Our old code sucks. It's difficult to debug and is full of abstractions that few people understand or even remember. Just yesterday I spent an hour ...
25
votes
14answers
2k views
Refactoring and concurrent development branches
You have several maintenance branches for existing releases of your software. Some developers are making direct changes in the maintenance branches, and merging periodically into the trunk. Now comes ...
24
votes
23answers
5k views
What's the best way to refactor a method that has too many (6+) parameters?
Occasionally I come across methods with an uncomfortable number of parameters. More often than not, they seem to be constructors. It seems like there ought to be a better way, but I can't see what ...
24
votes
27answers
3k views
Can you simplify this algorithm?
One for the mathematicians. This has gone around the office and we want to see who can come up with a better optimised version.
(((a+p) <= b) && (a == 0 || a > 1) && (b >= ...
24
votes
15answers
3k views
Should one test internal implementation, or only test public behaviour?
Given software where ...
The system consists of a few subsystems
Each subsystem consists of a few components
Each component is implemented using many classes
... I like to write automated tests of ...
24
votes
13answers
3k views
Are there any utilites that will help me refactor CSS
I am working with some CSS that is poorly written to say the least. I am not a design/CSS expert, but I at least understand the C in CSS. While the built in CSS support inside of VS-2008 is far ...
