vote up 1 vote down star
3

List examples of programmers doing stupid things in their code.

I just came across this little baby in PHP:

if(strpos($row['themename'],"some string") !== false){

This is wrong on so many levels. First, there is the double negation in saying 'not equals false'. Then there's the explicit checking of truth (why not do ($something == false) == true while you're at it?) and finally there's the calling of strpos for a simple string comparison.

I thought it would be fun to see what other examples people can come up with.

flag
1  
You do realise that's actually the correct way to do it, right? strpos() can return 0, which == false, but !== false (!== checks type, not just value). You can't check === true, because it never returns exactly true, and you can't check == true, because it can return 0 which you should look for too. – Matthew Scharley Oct 4 '08 at 13:02
If they meant to do a string comparison, then strpos() is fail. Are you positive they didn't intend to do a substring search? – Just Some Guy Oct 4 '08 at 14:14
Yeah, this little baby is correct. Beware with jugmental issues... – e-satis Oct 4 '08 at 19:05

12 Answers

vote up 12 vote down check

Uhm, it doesn't do 'not equals false' what it actually does is checks the expression and makes sure the result is not of type boolean false, not converted to boolean false as it would be if $row['themename'] was located at the start of "some string"

EDIT: Better explained here and here

Edit 2: In lieu of Graemes comment, to answer this question, I would like to claim this question as an example of a programmer doing something silly =]

link|flag
1  
This shouldn't be an answer, it should be a comment on the original question. – Graeme Perrow Oct 4 '08 at 13:00
+1 for checking the documentation. – Bill the Lizard Oct 4 '08 at 13:11
There's always that too. Humour's a better excuse though. – Matthew Scharley Oct 4 '08 at 13:34
vote up 6 vote down
#define TRUE (1)
#define FALSE (!TRUE)

The author of this C++ gem managed to define TRUE and FALSE as (a) different types, with (b) different sizes.

Genius!

link|flag
And (c) the semantics. – leppie Oct 4 '08 at 13:04
You usually see this in legacy code that was converted to C++ from C. – jmucchiello Dec 22 '08 at 3:24
I've seen some really crazy stuff when stdbool is missing but that takes the cake. – tinkertim Jan 15 at 9:51
vote up 6 vote down

Probably anything people have written and put live at 5pm on a Friday!

link|flag
damn...did that today!! :) – Kenny Sep 12 at 1:57
vote up 13 vote down

How about http://thedailywtf.com/?

Enough stupidity to procrastinate over for a decade in there.

link|flag
But enough about the forum users... – Rich B Oct 4 '08 at 15:11
Well, thedailywtf is more about stories, this is more of snippets. – Ubersoldat Jan 15 at 9:38
vote up 18 vote down

I had to explain this one to so many students I lost count.

if(condition == true) {
    return true;
}
else {
    return false;
}
link|flag
Occasionally this pattern can be useful - when debugging it lets you set a breakpoint only on one branch of the if (presumably the less frequent one). – Rob Walker Oct 4 '08 at 13:13
Some IDE's (I only know for sure about Eclipse) allow conditional breakpoints, i.e. only stop if condition == false, which is surely preferable :-) – Grundlefleck Oct 4 '08 at 13:27
Although the pattern might be useful for setting breakpoints, the first part is not excusable: if (condition == true).... – Carl Oct 4 '08 at 13:35
Carl, yes, it was really both parts I was illustrating. Rob, that's an excellent point, but I would probably fix this after I was finished debugging. – Bill the Lizard Oct 4 '08 at 13:55
Isn't this Joel's favourite? (-: – Rob Wells Oct 4 '08 at 15:45
show 8 more comments
vote up 14 vote down
try
{
    // do something
}
catch (Exception ex)
{
    if (ex is FileNotFoundException)
    {
        // blah
    }
    else if( ex is InvalidOperationException)
    {
        // blah
    }
    else if( ex is AnotherException)
    {
        // blah
    }
    // etc.
}
link|flag
This is in production code where I work!! ;) – Christopher Oct 4 '08 at 13:30
At least, it catches exceptions... – Romain Verdier Oct 4 '08 at 13:42
You're better off catching individual exceptions imho – Kris Jan 15 at 9:29
Kris, of course you have to catch individual exceptions, but using an IF-ELSE is very stupid. – Ubersoldat Jan 15 at 9:37
Ha-Ha-Ha – d03boy Sep 12 at 2:22
vote up 4 vote down

I've seen this used:

someVariable = GetObjectByName(ThatObject.Name)

in this sort of structure:

for i = 1 to 6
   select case i
   case 1: 
     dostuffwith(obj1)
   ..
   case 6: 
     dostuffwith(obj7)
   end select
next

And let's not forget the classic:

someFlag = True;
if(someFlag == False) 
{ 
   someFlag = True;
}

I, of course, saw the obvious problems in the above and refactored it:

for(someFlag = True; someFlag == False; someFlag = True);

After all, the original code fragment would be wrong if the assignment operation were to fail twice. My patented method allows for infinite failure.

link|flag
switch within a for loop... I've see that where I work. – Christopher Oct 4 '08 at 13:32
1  
Switch within a for loop has one (and only one purpose). In a testing program where you can say: execute tests 3 through 7. The for loop then starts at 3 and run test the tests in order. That was the only time I've ever seen that make even a little sense. – jmucchiello Dec 22 '08 at 3:23
vote up 17 vote down

Somebody wrote a loop to find out the size of an array:

int size = 0;
for (int i=0; i<array.length; i++) {
    size++;
}

That's stupid on so many levels its unbelievable.

link|flag
That is amazingly silly. I'm having trouble imagining the thought process there. – Neil Aitken Jan 15 at 9:31
me too, I think he somehow got this by refactoring and removing lots of code that originally were inside of the loop. – martinus Jan 15 at 12:15
or ... it's just dumb. – Kenny Sep 12 at 1:56
vote up 3 vote down
return i == 7 ? true : false;
link|flag
This is actually an improvement on my answer above. :) – Bill the Lizard Sep 12 at 1:57
return i == 7; – d03boy Sep 12 at 2:31
vote up 1 vote down
double val;
...
if(val == 0.1) {
  //do something
}else{
 //do something
}

assuming real number and floating number is the same thing subconsciously.

link|flag
vote up 4 vote down
try
{
    // something
}
catch (Exception ex)
{
    throw ex;
}

Brilliant... you've added 7 lines of code that do nothing except corrupt the stack trace of the exception.

link|flag
1  
that's not stupid at all, depending on what //something is... catching and rethrowing of exceptions can be a very clever help in complex exception handling. – tharkun Jan 21 at 14:42
@tharkun - I think you're missing the point. All this does is catch an exception and rethrow it, without doing anything else. If you're logging, translating, etc. then it isn't stupid, but as written above it is. – Greg Beech Jan 21 at 21:54
1  
I assume the point is use 'throw' and not 'throw ex' – Kenny Sep 12 at 2:00
depending on the language (java) you just set the method as "... throws Exception" and let the parent class deal with it – d03boy Sep 12 at 2:32
This does worse than "catch an exception and rethrow it without doing anything else." [throw;] rethrows an exception "without doing anything else." [throw ex;] throws ex at that point, which means the stack trace starts at that point. If you have A() calling B() calling C(), and C does a throw ex, all you'll see in the stack trace is A(), so you won't know where the error happened. – Kyralessa 2 days ago
show 1 more comment
vote up 1 vote down

I found one time this:

if (someBoolean != false) {
    // do something
}

And another time, from same author:

if (true != false) {
    // do something
}
link|flag

Your Answer

Get an OpenID
or

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