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? – LazyBoy 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 4 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 0 vote down

When I mark a section as needing a total rewrite, and then realize it's something that I wrote years before.

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

Bad/Poor commenting.

link|flag
vote up 0 vote down
Dispatcher.BeginInvoke( () => someTextBox.Background = Brushes.Red );
link|flag
vote up 0 vote down

Variable names not declared according to the context .

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 1 vote down

Not using const when they obviously should be...

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 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 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 2 vote down

That I'm reviewing someone else's code.

link|flag
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

When someone puts the opening bracket on the same line:

class A {
    /* Body */
}

instead of the one true way of doing this:

class A
{
    /* Body */
}
link|flag
3  
If that's the most disturbing, you are in programmer heaven. – Gamecat May 18 at 8:44
show 4 more comments
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 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 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 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

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 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 6 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 -1 vote down

pthread_create()

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 15 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 1 more comment
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 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
  • 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 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 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 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 -1 vote down

Bugs; especially any timing-related, intermittent bugs.

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.