vote up 7 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

1 2 next
vote up 12 vote down check

Code formatting. I absolutely can not read code, if it is not formatted consistently. Just thinking of the mix of tabs and space for indenting makes me shudder.

link|flag
2  
In NetBeans you can do Alt-shift-f and it auto formats your code =) – ChrisAD May 19 at 20:47
1  
If you consider yourself to be at least a half decent programmer, then you should be able to read code no matter how bad the formatting is. You certainly can't give up just because the curly brace is in the wrong location. And if you do re-format automatically in your editor, don't save it or you will clutter up the version control commits with whitespace changes. – too much php Sep 18 at 1:03
show 6 more comments
vote up 16 vote down

Things that seem like evidence of cargo cult programming. Stuff that doesn't make sense in the context. Typically, when asked why the solution is the way it is, a reply of "I don't know."

link|flag
1  
+1 for citing anti-pattern – Paul Morie May 23 at 4:30
show 2 more comments
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 13 vote down

Usually that they can write better code than me.

link|flag
27  
How lucky you are... – Vinko Vrsalovic May 18 at 5:24
show 2 more comments
vote up 11 vote down

Another favorite of mine is

//TODO:  If this doesn't work, remove code below

Or another favorite is lines of code that have just been commented out. We have things like subversion for a reason. No reason to leave code commented out from 3 iterations ago

//Code 
//Code 
//Code
link|flag
show 1 more comment
vote up 11 vote down
query = "select * from table where field like '%" + someTextBox.Text + "%'";
link|flag
6  
i can haz sql injekshun?? – Sarah Vessels Jun 18 at 18:41
vote up 10 vote down

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

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

Using the same variable for different purposes (a common habit of electrical engineers that write SW)

string buffer = ReadFileLine();
// ...
buffer = "Program Success!!!!";
link|flag
1  
Also a common habit of assembly programmers, who aren't used to having a compiler with a decent register allocator. – Steve Jessop Jun 5 at 8:19
vote up 7 vote down
  • Spelling errors in class names, method names
  • Untested edge cases
  • Rolling your own sort or other standard utilities, etc.
  • //Programmer's name (this is what blame is for)
  • All methods public
  • Methods with more than about 50 lines
  • Clear lack of understanding of meaning of protected/internal/private/static,etc.
  • Bizarre UI conventions (a drop down list for the City field!?!)
  • Copy-pasting blocks of code
link|flag
show 1 more comment
vote up 5 vote down

The thing that disturbs me the most is finding code that was clearly never tested.

link|flag
1  
@Chris I prefer the opposite: to not spend other people's time in finding bugs which the original developer could have found by self-testing. In fact, once the developer learns to test their own code sufficiently well, then code reviews no longer find any bugs in their code, and then you ow longer need to review their code at all! – ChrisW May 18 at 5:40
show 3 more comments
vote up 5 vote down
  • Inconsistent naming conventions
  • "Clever" code without any comments that could justify its existence
  • Tight coupling between modules
  • Spaghetti, or "copy-pasta" code
  • Code that follows only the "common" scenario, without any provisions for handling the edge cases
link|flag
show 2 more comments
vote up 5 vote down
  1. Useless code
  2. Incomplete code
  3. Half-ass completed code
  4. Not knowing the API and re-inventing the wheel with the wrong 'tools'
link|flag
vote up 5 vote down

Incompetence
When I realize the code is so bad that it would take a huge effort to even make the person understand why it's bad, let alone fix it.

link|flag
vote up 4 vote down

A Modest List

  • Inconsistent formatting even within the lines being changed.

  • Plainly visible (through IDE highlighting) compiler warnings.

  • Highly chained method calls (guess which one was null, it's a game!)

  • C-style variable names. For example, buf, ptr, cbuf. You and others are going to spend 10 times as much time - at the very least - reading the code. So you should optimize for reading, not writing.

  • Strange euphemisms for execution:

    • "walk the collection"
    • "exercise this code"
    • "spin through these things"
  • Long methods that do a million different things.

If statements comprised entirely of:

Unreadable Boolean-Chain Statements

if (!relevantBoolean 
    && CustomStringUtil.equalsIgnoreCase(thing, Constants.C_THING_TRUE) 
    && (CustomStringUtil.equalsIgnoreCase(otherThing, Constants.T_ERROR_STATE 
        || CustomStringUtil.equalsIgnoreCase(otherThing, Constants.T_WARNING_STATE))) {
    // do some stuff
    ...
}

Basically, complex to very complex booleans that have no unifying name. Sure, I the machine can figure that out and get it right. Sure, I can puzzle through it. But it wastes so much time as I try to decipher it and it makes people afraid to change it because it's one big honking statement that requires a strong mastery of boolean algebra to pick apart.

Conversely, you can encapsulate that stuff and make it readable. Below is a

Contra-Example

boolean hasStuffWeCareAbout = hasStuffWeCareAbout(record);
boolean containsSomethingWeAreOmitting = containsSomethingWeAreOmitting(record);
boolean shouldProduceOutput = hasStuffWeCareAbout && !containsSomethingWeAreOmitting;

if (shouldProduceOutput) {
    //  do stuff
    ....
}

Sure, it's wordier, but it's comprehensible, each unit of logic is discrete, modifiable, self documenting, it's easily debuggable since you see the result of each step, and it's unit testable.

link|flag
show 1 more comment
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 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 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 2 vote down

You might be interested in reading the "code smells" question - it goes over a number of common "code smells" (indicators of bad code) and how to correct them.

link|flag
vote up 2 vote down
  • No modular code

    10,000 in single file with 2000 lines for one function. Too difficult!

  • A Bad code

    getA()->getB()->getC()->getD()->getE()...getZ()->CallSomeNonsenseFunction()

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

That I'm reviewing someone else's code.

link|flag
vote up 2 vote down

Code that's obviously been copied from a blog somewhere and pasted into production code.

link|flag
1  
Biggest hint is code that's double spaced. These are the same people who aren't smart enough to rewrite the term papers they buy. – Will Jun 3 at 15:46
vote up 1 vote down

Usually a code written by people who think writing code doesnt need to be looked again once it starts working. Those people usually dont folloow standards, have very little programming expirience, don't comment and finally use some weird constructs like one

String a = null;
try {
  len = a.getLength();
} catch (NullPointerException e){
  len = 0;
}

to check simple length. Btw, I really came accross this code, multiple times, since it was copy/pasted in different places. Oh, and yeah, copy/pasted code is also really disturbing.

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

Use of #if 0 to block out code. This beats the very purpose of having a source control & makes the code very hard to read. Another very common issue is not initializing variables, a huge no - no but occurs very very often.

link|flag
show 3 more comments
vote up 1 vote down

Inefficiency - like copypasta repeated code and absence of modularisation is the worst. Also, where one lengthy block of code could be replaced by a 12 character line of code.

link|flag
vote up 1 vote down

Not using const when they obviously should be...

link|flag
vote up 0 vote down

The naming conventions are most disturbing. Somebody use the names for variable just as int a,b like is not a good practise. Atleast he should comment on it. Another one I notify is lack of comments in codes. A good programmer should write comments as he can possible. This help him to review code.

Anothe wrong stratergy coming is lack of functions. Some one writes a large code for a button clickis not good. So he should use functions for various purposes.

link|flag
vote up 0 vote down

2-spaces indentation.

link|flag
1  
I agree, 4 spaces is a minimum, (and 8 is almost too much). – Zifre May 19 at 20:58
1  
Follow the conventions of the community, and then get used to it. – guns May 19 at 21:02
show 2 more comments
vote up 0 vote down

When reading lines from a file, making the exact same database call with the exact same data for every line, when the entire table being searched only contains about 30 rows.

link|flag
vote up 0 vote down

Not to repeat everyone else but variables and functions named in a foreign language confuse [and disturb] the shit out of me.

link|flag
vote up 0 vote down

Variable names not declared according to the context .

link|flag
1 2 next

Your Answer

Get an OpenID
or

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