Tagged Questions

11
votes
12answers
650 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 …
2
votes
9answers
482 views

does this switch statement smell bad?

Switch(some case) { case 1: // compute something ... return something; break; case 2: // compute something ... return something; …
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. Of course, you could …
3
votes
13answers
589 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 for 52 posts a …
1
vote
5answers
114 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 duplication and …
5
votes
9answers
575 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 …
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 deliberately malicious …
0
votes
1answer
124 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 DomainObject's way to …
5
votes
3answers
322 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: …
2
votes
10answers
412 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 tell me the name of the …
1
vote
4answers
108 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 the developers in my …
14
votes
14answers
780 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 way that I convey the …
2
votes
9answers
265 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 talks about is that …
3
votes
4answers
224 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 dependencies are only used …
2
votes
7answers
155 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 "Magic strings" is not …

1 2 next
15 30 50 per page