Tagged Questions
Refactoring is a disciplined technique for restructuring an existing body of code, altering its internal structure without changing its external behavior.
232
votes
34answers
6k views
OK, so I'm not a beginner anymore. What comes next?
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 ...
157
votes
72answers
60k views
What is in your .vimrc? [closed]
Vi and Vim allow for really awesome customization, typically stored inside a .vimrc file. Typical features for a programmer would be syntax highlighting, smart indenting and so on.
What other tricks ...
92
votes
25answers
3k views
What is the best way to explain refactoring to non-technical people?
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 ...
81
votes
37answers
3k 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 ...
70
votes
37answers
6k views
What ReSharper 4+ live templates for C# do you use?
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 ...
69
votes
21answers
8k 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 ...
64
votes
12answers
2k 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 ...
63
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 ...
61
votes
17answers
2k views
how to survive maintaining a monster you created [closed]
You've worked somewhere for 3 years.
At the beginning of the second year you were involved in what you thought would be a small project.
You foolishly decided to take some risks with the choice of ...
59
votes
9answers
8k 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, ...
58
votes
17answers
22k 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. ...
54
votes
30answers
4k views
Java: Out with the Old, In with the New
Java is nearing version 7. It occurs to me that there there must be plenty of textbooks and training manuals kicking around that teach methods based on older versions of Java; where the methods ...
47
votes
29answers
2k views
When is it good (if ever) to scrap production code and start over?
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 ...
42
votes
16answers
5k 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 ...
40
votes
17answers
2k 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 ...
40
votes
12answers
10k views
Find unused code
I have to refactor a large C# Application, and i found a lot of functions that are never used in the app. Is there a tool that can check for unused code, so i can remove all the unused functions?
38
votes
14answers
12k views
Tools for PHP code refactoring
Are there any tools which support refactoring PHP code (renaming variables, extracting methods, finding method references, ...)? Thank you.
37
votes
2answers
1k 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 ...
36
votes
7answers
996 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 ...
35
votes
4answers
5k 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 ...
32
votes
9answers
6k views
What tool to find code duplicates in C# projects?
What tool would you recommend for finding code duplicates in C# code?
32
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 ...
30
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 ...
28
votes
6answers
4k 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 ...
27
votes
3answers
663 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 ...
26
votes
6answers
2k 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 ...
25
votes
10answers
1k views
Our code sucks and I'm powerless to fix it. Help!
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 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
...
25
votes
11answers
2k 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 ...
24
votes
11answers
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 ...
24
votes
14answers
755 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 ...
24
votes
15answers
2k 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 ...
24
votes
27answers
2k 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
13answers
2k 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 ...
23
votes
7answers
1k 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 ...
23
votes
14answers
1k 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 ...
23
votes
5answers
5k 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 ...
22
votes
2answers
690 views
is point free code more efficient, or just terser?
I wrote the following code, which takes a bunch of points and draws them on the screen using the gloss library.
let s = blocks pes
pts = map (map mkPt) s {- stitches to points-}
lines = map ...
22
votes
4answers
2k 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 a
int f()
Is there any reason not to ...
22
votes
5answers
5k 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 ...
21
votes
8answers
3k 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 ...
21
votes
19answers
1k views
How can I convince skeptical management and colleagues to allow refactoring of awful code? [closed]
At work I have found it very difficult to 'sell' the idea of refactoring to management and senior colleagues. This is despite us having inherited a truly awful codebase (we all thought it was awful ...
19
votes
14answers
849 views
Code refactoring on bad system design
I am a junior software engineer who've been given a task to take over a old system. This system has several problems, based on my preliminary assessment.
spaghetti code
repetitive code
classes with ...
19
votes
4answers
1k views
Is there a tool for refactoring SQL, a bit like a ReSharper for SQL
The sort of stuff I'm after right now is quite basic:
Auto format
Detect unused variables
Variable naming convention checking
I wouldn't be surprised if there was a tool available that could ...
19
votes
8answers
11k 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.
19
votes
14answers
601 views
Is it good practice to create once-used variables?
A colleague of mine refactored this code:
private void btnGeneral_Click(object sender, RoutedEventArgs e)
{
Button button = (Button)e.OriginalSource;
Type type = this.GetType();
Assembly ...
19
votes
13answers
980 views
How to convince my boss to do refactoring?
We (developers) think we should do large grand refactoring in our project, because:
With long time (more than 1 year) bug fixing too much hard code/hard logic been involved.
Pickup one piece of ...
19
votes
13answers
3k 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 ...
18
votes
19answers
1k views
Do very long methods always need refactoring?
I face a situation where we have many very long methods, 1000 lines or more.
To give you some more detail, we have a list of incoming high level commands, and each generates results in a longer ...
18
votes
7answers
2k views
How to organize MATLAB code?
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 ...