2
votes
9answers
461 views
does this switch statement smell bad?
Switch(some case) {
case 1:
// compute something ...
return something;
break;
case 2:
// compute something ...
return …
19
votes
31answers
2k 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.
…
3
votes
13answers
579 views
What do you think when a Boolean “if” has three resulting code paths?
(Background: from a previous job, a co-worker and I would end up discussing the bug pile during lunch. We began to develop a topic called "bug of the week". I doubt I have material …
1
vote
5answers
110 views
deadline shortcuts
Most of the time I write very maintainable and well design code(even at home). However I just wrote db + msword report app for my friend and code is really bad - lots of code dupli …
5
votes
9answers
570 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/ …
20
votes
20answers
3k views
What is the most EVIL code you have ever seen in a production enterprise environment?
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 de …
0
votes
1answer
120 views
Any way to reconcile Feature Envy with Long Parameter List?
I have been thinking about the Feature Envy smell lately. Suppose I have an object called DomainObject, that responds to a message "exportTo:someExport". This is basically the Doma …
5
votes
3answers
313 views
Too many “pattern suffixes” - design smell?
I just found myself creating a class called "InstructionBuilderFactoryMapFactory". That's 4 "pattern suffixes" on one class. It immediately reminded me of this:
http://www.jroll …
2
votes
10answers
410 views
Anything wrong with this kind/type of coding style?
Is there anything wrong with the below code? It is java codes, but somehow it looked like a C program to me. If there is something incorrect with the OO implementation, can you tel …
1
vote
4answers
106 views
C style logic and refactoring
I love languages that evaluate a single expression both as a value and as a boolean value. For example A = 1 evaluates to true, and so does 1. If this practice is very common to …
14
votes
14answers
773 views
Best way to relate code smells to a non technical audience?
I have been asked to present examples of code issues that were found during a code review.
My audience is mostly non-technical and I want to try to express the issues in such a w …
2
votes
9answers
258 views
Smaller methods vs. Clear recursion method
I'm reading Robert Martin's book "Clean Code" and most of what I've read makes sense and I'm trying to apply as much as I possibly can. One of the simplest most basic things he tal …
3
votes
4answers
222 views
Elegantly reducing the number of dependencies in ASP.NET MVC controllers
We are developing what is becoming a sizable ASP.NET MVC project and a code smell is starting to raise its head.
Every controller has 5 or more dependencies, some of these depende …
2
votes
7answers
153 views
Are there any valid arguments for using unnamed constants?
A commonly used term is "Magic numbers". As discussed in a related question, this is considered a code smell. I assume the same would go for string constants, although the term "Ma …
2
votes
13answers
538 views
Is the use of protected methods a bad thing?
A friend of mine has just posited that protected methods (yes, methods) constitute a code smell. That is, they're indicative of potential bad programming practice.
My gut says he' …
