vote up 6 vote down star
3

When reviewing somebody else's code, what is it that you usually find most disturbing?

flag
12  
Community Wiki? – chimp May 18 at 5:22
9  
@Dhanapal: But before you are happy to accumulate any rep you happen to get for it, right? Questions like this one should be a wiki from the start, and having 2000 rep already you should know it. Just my $0.02. – Tomalak May 18 at 7:02
1  
Rep doesn't matter, but Why so much hurry to make community? – LittleBoy May 18 at 7:13
7  
If the rep doesn't matter, why do you keep on posting these type of questions and refuse to make them CW? – Neil Butterworth May 18 at 7:16
show 2 more comments

36 Answers

prev 1 2
vote up 3 vote down

Where to start?

The fact that most Java programmers don't remember to close files?

In C, it's usually rampant cut and paste or explict if...then...else logic for every possible case, when it could have been done in a more general way.

From experienced programmers, I often see premature optimization; the code is incredibly complex because it works a few cycles faster on the archetecture that we happen to be on today. Maybe.

link|flag
show 1 more comment
vote up 15 vote down

Extremely complex and clever ways to do things that can (and should) be done in much simpler ways. The other side of this coin is extremely unclever and complex ways to do things that can (and should) be done in much simpler ways.

Common manifestation: doing things that should be done in the database in application code, for example, simple aggregate functions like min, sum, etc, being calculated in application code instead of in a query.

link|flag
show 1 more comment
vote up 9 vote down

Lack of comments in the code yet detailed explanations in the review email.

link|flag
show 1 more comment
vote up 2 vote down

Basic best practices are the things that I find most disturbing, for instance in Java when I see this

for(int i =0; i < List.Length ; i++){
    Object obj = List[i];
}

When something like this would have been better

for(Item item: List){
   Object obj = item;
}

Especially when IDEs like Eclipse can automatically clean up your code. Or you could use something like checkstyle to assure your code follows some template

link|flag
1  
Effective Java: A Programming Language Guide , would argue that you should go with a foreach when you can. Anyway, more often than not someone is going to ask me to help them fix a snippet of code. They can either write it their way , or they can write it my way.... In the end it's going to be my way , so it's easier to save the headaches – PSU_Kardi May 18 at 5:30
1  
@Liran: Usually it’s type safer without having to typecast and above all it’s shorter. You don’t have to check off-by-one errors etc. – zoul May 18 at 6:51
2  
It bugs me even more that you don't put a space before the braces. That is really ugly. – Zifre May 19 at 21:06
show 3 more comments
vote up 3 vote down

Working in a group environment I find it disturbing when different developers use different coding styles in the same document; sometimes even in the same function. You can come up with detailed coding standards, but a primary rule should be 'make your changes to a file look like the existing code in the file."

...and what Cyril Gupta said...

link|flag
show 1 more comment
vote up 13 vote down

Usually that they can write better code than me.

link|flag
26  
How lucky you are... – Vinko Vrsalovic May 18 at 5:24
show 2 more comments
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.