vote up 101 vote down star
84

More specifically, what types of mistakes do you most commonly see in code from really green (inexperienced, not the Al Gore kind) programmers?

flag
4  
Perhaps it would be a good idea for users to add why these mistakes are wrong, just in case some of us (me) look at this page and feel like the community here have been watching me code for years. – EnderMB Oct 26 '08 at 2:22
2  
+1 for the Al Gore differentiation – Tim Büthe Jul 13 at 12:23

109 Answers

vote up 52 vote down

They've know that C strings need to be terminated with a null character, but haven't yet understood this.

/* Ensure mystr is zero-terminated */
mystr[ strlen(mystr) ] = '\0';
link|flag
1  
but but... uhh... but... Oh... Uhh..What!? Why would you do that!? I'm so confused. Damn Junior Developers. – Kieveli Nov 28 '08 at 18:59
4  
That is a really great piece of code for interview! – ya23 Apr 30 at 15:03
14  
uh, doesn't strlen search for a \0? – apphacker May 20 at 20:14
5  
apphacker: I think that is actually the whole point to this tongue-in-cheek answer. :) – Arafangion May 21 at 3:10
8  
whoooooooooshhhhh! – Logicalmind May 21 at 15:26
show 4 more comments
vote up 22 vote down

When the programmer assumes that everything will work out fine ...

double MyFunction( int intParam )
{
    return localVar = 100 / intParam;
}
link|flag
67  
The real WTF is that your function shouldn't return anything. – Kevin M. May 20 at 17:25
show 2 more comments
vote up 2 vote down

Gratuitous usage of reflection.

link|flag
2  
I doubt inexperienced programmers are able to use reflection at all. – mafutrct Apr 30 at 13:06
show 2 more comments
vote up 0 vote down
  • Exposing collections as get; AND set;

  • Code in the file that doesn't actually do anything but was included in a bunch of changes they implemented to get it working meaning they think the pointless code "somehow" helps.

link|flag
show 2 more comments
vote up 4 vote down

Young coders are often very enthusiastic and rush headlong into solving problems without a care towards reuse, coding standards, readability, testing, or anything other than just "gettin' r done."

Another newbie habit, especially from guys who've really boned up on patterns and object oriented programming, is over-design. Creating a beautiful class hierarchy that looks fantastic in UML but ends up being a maintenance nightmare - too complex to easily understand how the code flows from top to bottom, no regard at all for performance, etc.

link|flag
vote up 87 vote down

Letting the compiler do your testing - "it compiled, it's OK"

link|flag
1  
Indeed, this is a real sign of inexperience. – mafutrct Apr 30 at 12:57
5  
this is classic! this should have more votes. maybe people who use dynamic non-compiled languages just can't relate to this one, resulting in fewer up-votes. – que que May 20 at 19:25
2  
@que que: This is far worse in dynamic, non-compiled languages. The runtime hasn't even necessarily gone over all code-paths, like a static compiler would have had to. – Bernard May 21 at 3:45
2  
What's wrong with that? I set my compiler to treat warnings as errors, after all...</sarcasm> – Nathan Clark Jun 24 at 21:37
2  
In Haskell or CAML, it's true! – Dario Nov 5 at 18:45
vote up 0 vote down

I don't know but this seems a tad bit suspicious to me:

foreach (BaseType b in collBaseType)
{
  if((Type)b.GetType()).BaseType == typeof(DerivedType))
    this.saveColl.Add(c)
}

where b has a type derived from DerivedType.

link|flag
vote up 1 vote down
string myVariable;

...

Foo(myVariable.ToString());
link|flag
vote up 0 vote down

I saw this once:

object obj= sdr["some_int_value"].ToString();
 int i = 0;
try {
  i = (int)obj;
} catch {
}

Int32.TryParse, anyone?

  • Using try/catch for converting data.
  • Thinking try/catch has zero penalty. Even simply wrapping it in a try has a cost, albeit not much. It doesn't take too many exceptions to make that an expensive call in loops.
  • Using try/catch on every other line of code. All of which has nothing in the catch block.
  • Not commenting what a method/function does. This is a personal pet peeve of mine because I've seen someone have two methods with one having a '2' at the end... and both have very subtle changes.
  • Failing to understand why using the 'using' keyword is important when dealing with connections and datareaders. One can do without it, yes, however the using forces you to close the connection. I've yet to find a reason why not to do it.
  • Not understanding what transactions and stored procedures are important. Inconsistant data, anyone?
  • Not understanding why constraints are important. Race conditions, anyone?
link|flag
1  
My argument is only invalid if we're using .NET 1.1 or older. We weren't. In fact this particular person argued for .NET 3.5. He also argued that catching something had minimal cost. By eliminating the try/catch we significantly gained in speed because we had a 40% catch rate. This along made something go from 23 hours down to 12 hours. (not just a single try/catch, we had many of them that added up). – Nazadus May 21 at 11:39
show 1 more comment
vote up 11 vote down

Another common simple one is:

if(value.equals("something"))
...

The problem with this one is what happens if value is null? Yup, a NullPointerException. Happens all the time. Instead it should be:

if("something".equals(value))
...

Reversing the order can never give you a NullPointerException.

link|flag
13  
-1: this may protect you from NPEs but it hurts readability. I don't think avoiding this technique is a mark of inexperience. – simonn Apr 30 at 23:06
13  
It also depends whether value is allowed to be null. If it shouldn't ever be null, the first version will at least fail early with an exception. The second version will hide the bug. – Dan Dyer May 6 at 10:13
3  
I subscribe to the constant values on the left hand side, it might hurt readability slightly, but it prevents the occurrence of unintentional assignment in place of evaluation, the same as if(myvar = null) { } will compile and potentially run causing a hard to find bug, but if (null = myvar) { } will cause an easy to find compilation error. – BenAlabaster May 20 at 17:51
1  
This does not hurt readability in the slightest - the only problem with it really is that the value should be a constant, not a string literal. That way, it is really easy to detect what is trying to be matched (Java syntax): public static final String THIS_THING = "this that and not the other"; // ... other code if(THIS_THING.equals(value)) { // ... etc } – MetroidFan2002 May 20 at 19:11
6  
i would rather go for string.Equals(stringA, stringB) ... that's the most safe technique! – dittodhole Jul 13 at 11:19
show 5 more comments
vote up 15 vote down

Wanting to "start over" on large projects whenever something in the existing framework doesn't match their world view.

link|flag
1  
How about wanting to start over on a large project that was only large because of 3M+ lines of generated (and unused) code. – Matthew Whited Jun 24 at 21:02
1  
Depends on the situation. If it is an existing and supported (commercial/open source) framework, this is indeed silly. If the framework in question is hacked together in-house and is more in the way of developing than actually helping the project, then throwing the framework out and starting over might even be the only right thing to do. ;-) – peSHIr Jul 13 at 13:58
show 2 more comments
vote up 1 vote down

I still sometimes print out information to console when I should have used a logger or entered in debugging mode; so using this:

System.out.println("Reached foo init, bar is: " + bar);

...is risky because it could end up in production environment.

link|flag
vote up 1 vote down

Using a Verdana font to program in....

link|flag
1  
Having never done this, could you explain this one further? – Sukasa May 21 at 15:41
show 1 more comment
vote up 18 vote down
try
{
    // try something
}
catch (Exception ex)
{
    throw ex;
}

I've seen this submitted in code samples from many applications. Typically the entire method is inside the try block.

link|flag
10  
At least they throw the exception. A worse solution (that I've seen frequently) is to just swallow the exception and return like nothing happened. No logging or anything. Fun to debug. – Logicalmind May 21 at 15:31
3  
In C# you would want to just throw; When you do throw ex; it restarts the stacktrace in that method. You would have no idea where it came from. – David Basarab Jul 13 at 18:50
show 3 more comments
vote up 15 vote down

Not only copying and pasting code, but copying and pasting code with comments and not updating the comments to reflect the new context!

link|flag
2  
My favourite example : "/* Covert to uppercase */" <code that converts string to lower case.>" Further down was a method with the same comment, but it did upper case the string, so the programmer had obviously just copy and pasted then modified. No comments are preferable to wrong comments. – Bernard May 21 at 3:56
show 2 more comments
vote up 4 vote down

Not realizing that the toString method exists, instead doing something like:

Person p = getPerson();
LOG.debug("Got person, first name is " + p.getFirstName() + ", surname is "
  + p.getSurname() + ", age is " + p.getAge(), " gender is "
  + p.getGender());
link|flag
1  
Then it's acceptable to get useful info out any way that you can. For the examples I was referring to the toString method could have been overridden. – John Topley Jul 13 at 14:39
show 1 more comment
vote up 2 vote down

You want to know if an integer x is between 0 and 100? Do it this way, of course:

for (int i = 0; i <= 100; i++) {
    if (x == i) {
        System.out.println(x + " is in range"); // or something similar
    }
}

I found something like this inside another loop whose purpose was to determine which elements of an integer array were between 0 and 100.

link|flag
show 1 more comment
vote up 0 vote down
if(something)
{

}
else
{
  doSomething();
}
link|flag
show 2 more comments
vote up 1 vote down
//Add value to i
i += value;

//Check if i is less than 10
if(i < 10)
{
  //if i is less than 10, return true
  return true;
}

//otherwise i is greater than 10
else
{
  return false;
}
link|flag
2  
yes, that last comment is totally wrong. It should be "otherwise i is greater than or equal to 10"! :) – dotjoe May 20 at 18:54
vote up 0 vote down

Using the ternary operator at every available opportunity. Especially when the ternary operator runs really long and an if/then/else statement would be more readable.

$foo = (count($articles) < $min_article_count) ? get_articles_by_genre($status, $author, $site_id, $genre) : get_hot_topics($board_id, $platform_id, $min_date);

versus

if (count($articles) < $min_article_count) {
   $foo = get_articles_by_genre($status, $author, $site_id, $genre);
}
else {
   $foo = get_hot_topics($board_id, $platform_id, $min_date);
}
link|flag
1  
I'm with both Michael Lutton and egaga on this one. I think (a) that inexperienced programmers almost never use the ternary operator but (b) that your example code is clearer without it. I tend to find that inexperienced developers, on the contrary, don't use the ternary operator in situations where it would be clear and concise. – Gregory Higley Jun 24 at 20:34
show 2 more comments
vote up 2 vote down

Comments in code telling what you're doing rather than explaining why you're doing it is a dead giveaway. I look at it and think to myself "wow, they were really struggling to piece together how the thing worked."

We're ostensibly professionals. I don't think we need any comments to explain what's going to happen in that foreach loop. Less of that, more explaining why you're doing something that isn't immediately obvious (OK, I see you're checking the return code against a magic number - why?).

link|flag
4  
I respectfully disagree. If you have 20-30 lines of code representing 3 logical stages in a process, I find comments are a good way to break up the code so it's easier to apprehend. Even though anyone can tell the difference between and appetizer and an entree, headings on a menu help with that. I leave the "explaining why" for cases when I think the way something is being done is non-obvious or works around a subtle bug. – Nick May 21 at 12:02
vote up 5 vote down

This is great but it would be really helpful to see the proper ways to write the code and why. Not everyone has years of experience :)

link|flag
vote up 0 vote down

Using comments for a piece of code that should be put into a separate method.

x = ...
y = ...
// foo as a bar
return x*y+35

this should be instead:

return fooAsABar(x, y)
link|flag
vote up 4 vote down

If you think O(n) is more flexible than O(1) because it has a variable, you are inexperienced.

Common and Real mistakes:

  • Not commenting.
  • Not cleaning up code/interfaces after getting a system to work.
  • Not communicating with their customer (internal or external)
  • Not taking the time to understand the systems they are interfacing with.
  • Modifying another system's internals with a hack to support work on another system.
  • Not verifying that their code compiles and that the app successfully launches before checking in.
  • Giving best case estimates that only include implementation time.
link|flag
show 1 more comment
vote up 2 vote down

Usually when you see something like this:

public static string ProcessUpdate(string xml)
{
    string result = "";
    try
    {
        //code...
    }
    catch (Exception exception)
    {
        result = exception.Message.ToString();
    }

    if (result == "")
       result = "True";

    return result;
}
link|flag
show 1 more comment
vote up 32 vote down

Not being happier to delete code than to write it.

link|flag
12  
Nothing better than replacing a 30 line monstrosity with one or two liner. – Bernard May 21 at 3:53
2  
Less code is typically easier to read. I enjoy showing devs that their 4 hours of work can be replaced by an existing framework method. – Matthew Whited Jun 24 at 21:04
show 1 more comment
vote up 0 vote down

I just saw this

move(0+shift);
link|flag
vote up 3 vote down

Coding newbie mistakes:

  • Code compiles but doesn't run.
  • Code runs but fails unit tests.
  • Breaking published style guidelines.
  • Changing line-endings, even mid-file.
  • Not commenting their code as they write it.

Coding group newbie mistakes:

  • Not asking for code review throughout their first projects.
  • Not asking questions about assignments.
  • Not documenting specifications and deliverables for their projects.
  • Not reading documentation before asking questions.
  • Not Googling before asking questions.
  • Not spending time familiarizing themselves with their daily toolset.
  • Throwing their two cents into every group discussion.
link|flag
vote up 1 vote down

for (int i = 0; i < 12; i++)
{
if(test)
{
 i=12;
}
else
{
 //do stuff
}
}

link|flag
vote up 2 vote down

A few I've seen:

  • Writing single methods/functions that do several unrelated things
  • Rewriting functionality that is already available
  • Fixing bug symptoms instead of the root cause
link|flag

Your Answer

Get an OpenID
or

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