Tagged Questions
The code-smell tag has no wiki summary.
498
votes
162answers
36k views
What are Code Smells? What is the best way to correct them? [closed]
OK, so I know what a code smell is, and the Wikipedia Article is pretty clear in its definition:
In computer programming, code smell is
any symptom in the source code of a
computer program ...
76
votes
37answers
15k views
What is the most EVIL code you have ever seen in a production enterprise environment? [closed]
What is the most evil or dangerous code fragment you have ever seen in a production environment at a company? I've never encountered production code that I would consider to be deliberately malicious ...
50
votes
35answers
7k views
How many parameters are too many?
Routines can have parameters, that's no news. You can define as many parameters as you may need, but too many of them will make your routine difficult to understand and maintain.
Of course, you could ...
37
votes
19answers
2k views
boolean parameters — do they smell?
I just found a bug caused by a boolean parameter... the caller thought it was controlling one thing but it was really controlling something else. So do boolean parameters smell in general? ...
30
votes
23answers
2k views
“it works-don't touch it” and continues engineering
Sometimes I work with bad smelling code. Yes, there's bad code out there :) I'm not talking about design problem but about much more simple things like:
messy indentation
non consistent use of empty ...
29
votes
21answers
2k views
Convince my coworker that methods with 26 parameters are bad practice
How do I convince my co-worker that methods with 26 parameters are bad practice? We've debated this without any progress.
Closest related questions I could find:
How many parameters are too many?
...
27
votes
4answers
1k views
Auditing a PHP codebase
I'm about to look at a project's PHP codebase for the first time, and I'd like to perform a semi-formal audit. Because I'm new to the project, this will not only give me a chance to get properly ...
25
votes
3answers
514 views
Making Objective-C Classes look Beautiful
I wanted to ask you all for you opinions on code smells in Objective C, specifically Cocoa Touch. I'm working on a fairly complex game, and about to start the Great December Refactoring.
A good ...
23
votes
22answers
2k views
Smelly class names?
In your experience, what are some "smelly" keywords in class or function names that might be warning signs of bad object-oriented design?
I've found that classes containing the word Manager or Base ...
21
votes
8answers
2k views
Is too many Left Joins a code smell?
If you have for example > 5 left joins in a query is that a code smell that there is ...
something wrong with your design?
you're doing too much in one query?
you're database is too normalized?
18
votes
18answers
787 views
does an incorrect comment smell?
I just had a situation where I was reading some code while working on a bug and I noticed an incorrect comment (the code did not do what the comment said it did). I just thought "hmm, ok" and went on ...
17
votes
12answers
2k views
Why use tuples instead of objects?
The codebase where I work has an object called Pair where A and B are the types of the first and second values in the Pair. I find this object to be offensive, because it gets used instead of an ...
16
votes
5answers
609 views
Are empty interfaces code smell?
I have a function that returns entirely different objects based on certain cases. In order to have a common type I resorted using an empty interface as a return type and "implemented" that on both.
...
15
votes
6answers
433 views
Java tool to improve my Clean Code Development
Are there any (static analysis / refactoring / ...) tools for Java specially tailored towards clean code development (CCD)?
I know of the usual tools for static analysis (PMD, Findbugs, Checkstyle), ...
15
votes
11answers
1k views
Are private methods in general a code smell?
In the sense that a code smell is an indicator of a potential need for refactoring are private methods a code smell?
I was looking at some of my own code and it dawned on me that many of my public ...
15
votes
17answers
746 views
Persuading developers to fix smelly but working code?
In our company, developers always have dozens of important tasks assigned and tight deadlines in which to complete them.
In this environment, a code review often shows that their program will execute ...
15
votes
14answers
2k views
Is there a name for this anti-pattern/code smell?
Let me start by saying that I do not advocate this approach, but I saw it recently and I was wondering if there was a name for it I could use to point the guilty party to. So here goes.
Now you have ...
14
votes
14answers
1k views
Code smells galore. Can this be a good company?
I am currently doing some contract work for a company. Now they want to hire me for real. I have been reading on SO about code smells lately.
The thing is, I have worked with some of their code and ...
14
votes
9answers
738 views
Should clean code always obey these rules?
Regarding the book "Clean Code - A Handbook of Agile Software Craftsmanship":
it says that functions should do one thing. Should else be avoided? If so, should return true and return false that use ...
14
votes
6answers
2k views
tool to detect C# code smells
I'm working with C# and I was hoping to find some tools akin to those I'm used to in Ruby and Ruby on Rails for detecting code smells. I'm referring to things like Roodi, Flay, Flog, Reek, Rcov, and ...
12
votes
5answers
214 views
I'm using too many dictionaries within dictionaries in my code, is that a code smell?
I'm using a lot of dictionary collections that contain other dictionary collections like:
Dictionary<Guid, List<string>>()
Dictionary<Guid, Dictionary<Guid, ...
12
votes
4answers
422 views
Composition vs. Inheritance: Is the need for mutual referencing a good hint?
If two classes both need to know about each other to do their job, i.e. class A must maintain a reference to class B and class B must maintain a reference to class A, is this generally a sign that ...
11
votes
3answers
295 views
How to cope with developing against a poor 3rd party API/application?
Update: Based on the feedback, some good strategies are:
Avoid geeky arguments, instead focus on problems that effect the application on the whole, not just problems for developers.
Keep a bug list ...
11
votes
7answers
642 views
Do write-only properties have practical applications?
I don't know why I started thinking about this, but now I can't seem to stop.
In C# - and probably a lot of other languages, I remember that Delphi used to let you do this too - it's legal to write ...
11
votes
4answers
627 views
Is it bad to use reflection to simplify constructors, comparisons, etc?
I hate having a bunch of "left/right" methods. Every time a property is added or removed, I have to fix up each method. And the code itself just looks ... wrong.
public Foo(Foo other)
{
this.Bar ...
11
votes
18answers
3k views
My Java factory method smells. How do I fix it?
There's something very unsatisfactory about this code:
/*
Given a command string in which the first 8 characters are the command name
padded on the right with whitespace, construct the appropriate ...
10
votes
3answers
209 views
Is it a code smell to inject a dependency and set one of its members to `this`?
Is it a code smell to inject a dependency and set one of its properties to your current instance? I set my code in this manner so I could completely isolate the service implementation. I have a series ...
10
votes
2answers
530 views
In Python, is use of `del` statement a code smell?
I tend to use it whenever I am working on a prototype script, and:
Use a somewhat common variable (such as fileCount), and
Have a large method (20+ lines), and
Do not use classes or namespaces yet.
...
10
votes
7answers
344 views
Does this method violate SOLID or has code smell?
Does this give any code smell or violate SOLID principles?
public string Summarize()
{
IList<IDisplayable> displayableItems = getAllDisplayableItems();
StringBuilder summary = new ...
10
votes
6answers
648 views
What are Database Smells? What is the easiest way to correct them?
Scott W. Ambler has put up a good list of basic database smells.
It would be good to see how these can be corrected, what database refactorings can be applied as a remedy and if any smells are ...
10
votes
12answers
392 views
Persuading the business that fundamental design flaws are worth fixing
This is the second project I've worked on where an incorrect assumption has been made in the design of the software. In both cases it has resulted in a solution that is:
More likely to get bugs ...
10
votes
9answers
1k views
Constructor Parameters - Rule of Thumb
In general, what is the maximum number of parameters a class constructor should accept? I'm developing a class that requires a lot of initialization data (currently 10 parameters). However, a ...
9
votes
5answers
236 views
At what point does passing a flag into a method become a code smell?
Sometimes when fixing a defect in an existing code base I might (often out of laziness) decide to change a method from:
void
MyClass::foo(uint32_t aBar)
{
// Do something with aBar...
}
to:
...
9
votes
4answers
328 views
When is Inversion of Control useful and when shouldn't it be used?
I've recently been bitten by code that uses Inversion of Control when it's not appropriate. Lately, I'm of the opinion that IoC is among the patterns that have the worst effect when misapplied. This ...
9
votes
6answers
539 views
Single Responsibility Principle: do all public methods in a class have to use all class dependencies?
Say I have a class that looks like the following:
internal class SomeClass
{
IDependency _someDependency;
...
internal string SomeFunctionality_MakesUseofIDependency()
{
...
...
9
votes
2answers
340 views
MVC Design pattern smells?
I must have implement MVC dozens of times in the context of various toolkits. I've noticed there are a few things that keep cropping up in the implementation which I'm not completely comfortable ...
8
votes
15answers
377 views
Is an Initialize method a code smell?
I'm coding a bunch of systems right now. They do not derive from a common interface.
Some example systems: MusicSystem, PhysicsSystem, InputSystem, et cetera.
Currently, MusicSystem loads a lot of ...
8
votes
5answers
95 views
Making one value “special”
What is the "computer science" term for the practice of assigning a special meaning to one of a type's values? For example a numeric variable called "amount_to_transfer" where the special value "0" ...
8
votes
5answers
384 views
Is there an alternative to this switch statement?
This is a sneaky general question masquerading under the guise of a very specific problem. To cover my shame the specific switch statement I'm wondering if there's a better alternative to is:
...
8
votes
5answers
520 views
Is global:: a bad code smell in C#?
From what I understand, the global:: qualifier allows you to access a namespace that has been hidden by another with the same name. The MSDN page uses System as an example. If you create your own ...
8
votes
2answers
197 views
tool for detecting commented-out code
It is agreed by many that commented out code is a bad thing if you are using source control.
(And it is agreed by many more, that if you are not using source control, that is even a worse thing).
...
8
votes
10answers
1k views
Too many constants?
Is there such a thing as too many constants in a project? What are some general rules of thumb about where the use of constants starts to become inappropriate and should be refactored? Perhaps moving ...
8
votes
13answers
562 views
When do you know you're dealing with an anti-pattern?
I'm looking to see how other programmers find anti-patterns, "code-smells", etc.
In particular, what things start setting you off when you're looking at code that tells you, something has gone ...
8
votes
9answers
1k views
Code deodorant: practices to avoid code smells
Excessive use of magic numbers or string literals in code is something of a code smell; not necessarily wrong but worth considering carefully. However, one can set up your editor/IDE to highlight ...
7
votes
3answers
290 views
Is too many params in a constructor for a factory a code smell?
I have a factory class that currently takes 6 params in it's constructor, and I just hit a need to add another.
Normally, this would scream to me "Hey, your class has too many dependencies, ...
7
votes
1answer
150 views
Is “too many dependencies” a code smell?
As a general rule, I like to use constructor-based dependency injection, but recently I was working on a class that depended on 4 other classes. Because long argument lists are hard to read, I ...
7
votes
1answer
176 views
Bad Design? Constructor of composition uses `this`
Example:
class MyClass
{
Composition m_Composition;
void MyClass()
{
m_Composition = new Composition( this );
}
}
I am interested in using depenency-injection here. So I ...
7
votes
6answers
336 views
Code Smell: Configuration Nightmare
How would you identify and fix the following code smell:
I've got a small scientific computing app that I'm writing that has to be able to handle lots of variations on the same theme. The inner ...
7
votes
4answers
2k views
C# overloading operator== versus Equals()
I'm working on a C# project for which, until now, I've used immutable objects and factories to ensure that objects of type Foo can always be compared for equality with ==. Foo objects can't be changed ...
7
votes
6answers
5k views
Could someone explaining the reasoning behind some of these PMD rules?
DataflowAnomalyAnalysis: Found
'DD'-anomaly for variable 'variable'
(lines 'n1'-'n2').
DataflowAnomalyAnalysis: Found
'DU'-anomaly for variable 'variable'
(lines 'n1'-'n2').
DD and ...