vote up 3 vote down star
1

Today, I was reviewing some code a coworker had written recently. The following statement seemed to jump off the screen at me.

string defaultValue = (1000).ToString();

And this has prompted me to ask the question...

What simple problem have you seen addressed in an unnecessarily complicated manner?

flag

8 Answers

vote up 11 vote down

You can look at the archive at TheDailyWTF. Many examples there.

link|flag
vote up 1 vote down

Recipe 576766: Hexadecimal Conversion Tool.

link|flag
vote up 1 vote down

Just saw one today that made me laugh. It's clever in a lot of ways, but not in the one that counts.

<?php
function isNumber($num) {
  $isNum = true;
  for($i=0; $i < strlen($num); $i++) {
    $isNum &= preg_match('/^(0|1|2|3|4|5|6|7|8|9)$/', $num{$i});
  }
  return (bool) $isNum;
}
?>

This is what I get for suggesting regex. Could have just used is_numeric($num) I guess...

link|flag
vote up 6 vote down

Enterprise Fizzbuzz!

The (sole) issue in the tracker is also excellent: http://code.google.com/p/fizzbuzz/issues/detail?id=1

link|flag
vote up 0 vote down
FILE *f;
char mode[2];

mode[0] = 'r';
mode[1] = '\0';

f = fopen( "filename", mode );
link|flag
vote up 1 vote down

This one is my personal favorite. I prefer the constant, but it's more typing

if ( someString == "" )          // Just seems wrong
{ //... magic happens here }

if ( someString == String.Empty) // Seems better but is more complicated
{ //... magic also happens here too }

We all know we should use constants, but when is having simple things as constants too much?

link|flag
vote up 3 vote down

Loop trough a collection to load a combo box, insted of using the Databinding feature.

link|flag
vote up 2 vote down

There's the classic

if (x > 3)
{
return true;
}
else
{
return false;
}

Of course, if you just want obfuscation, there's always the International Obfuscated C Code Contest.

link|flag

Your Answer

Get an OpenID
or

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