vote up 102 vote down star
85

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 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
if(something)
{

}
else
{
  doSomething();
}
link|flag
show 2 more comments
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 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 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 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 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 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 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 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 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 1 vote down
string myVariable;

...

Foo(myVariable.ToString());
link|flag
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 88 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 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 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 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 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 53 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 19 vote down

The single biggest giveaway I've seen? Not planning before coding.

Unfortunately, this applies to intermediate and many advanced programmers, too.

link|flag
3  
This is why I believe peer review every now and then is very important. Even if it's short, it catches things like that and when one has to re-write often enough, they learn to think first and code second. – Nazadus Nov 18 '08 at 11:24
show 2 more comments
vote up 3 vote down

Using constants in code and wildly hunting for them whenever they need to be changed.

link|flag
vote up 1 vote down

In the following, "files" is a very large array of strings. This was also a design decision made by the programmer in questions.

private String findThePlaylist(String playlistFileName) {

    String theone = "";

    for (int i = 0; i < files.length; i++) {
        if (files[i] == playlistFileName) {
            theone = files[i];
        }
    }

    return theone;
}
link|flag
vote up 45 vote down

I've actually seen this:

            bool b;

            switch(b)
            {
                case true:
                    DoSomething();
                    break;
                case false:
                    UndoSomething();
                    break;
                default:
                    MessageBox.Show("Error");
                    break;
            }
link|flag
2  
HAhaha, looks innocent till you realise you dealing with a boolean :) – leppie Oct 26 '08 at 8:46
38  
The third option should throw a FileNotFound exception... – Chris Lively Oct 28 '08 at 3:28
10  
What's worse, the default is actually reachable! b takes up one byte and was never initialized. (2 != true). – Joshua May 20 at 17:01
21  
This pattern is important. It allows you to handle the situation where a quantum singularity transforms the laws of physics. – ebencooke May 20 at 17:55
2  
Joshua: I didn't believe that at first but you're right! At least in D, it is possible to create a bool that's neither equal true nor equal false. You'll need pointers or unions to do it though. – FeepingCreature May 20 at 21:33
show 10 more comments
vote up 10 vote down

Using parallel arrays when an array of structures/records/objects would be more appropriate.

Comments that convey the author's uncertainty as to why the code works (e.g. /* I don't know why I have to frob the quux but if I don't then it crashes */). Note that these are sometimes also added by those who inherit the code later (e.g. /* TODO: Why in the world is this code frobbing the quux? */).

Comments copied from example code or containing boilerplate documentation.

Code "litter": unused local variables, member variables that are only used in one member function (and not saved across calls), superfluous blocks of code, etc.

(C++) Taking extra care not to delete NULL:

if(ptr) {
    delete ptr;
}

(C++) Using unnecessary semicolons to avoid having to remember which blocks actually need them:

namespace foo {
    int bar() {
        ...
    };
};

(C++) Not even paying lip service to const correctness:

char* surprise = "Hello world!";

(Modifying a pointer to a string literal is undefined behavior, so this should be const char*.)

int add(int& a, int& b) { return a + b; }

(a and b must be lvalues even though they are not modified.)

class baz {
    ...
    double get_result() { return m_result; }
    ...
};

(Calling get_result() requires a non-const baz.)

link|flag
7  
No. The C++ language guarantees that delete p will do nothing if p is equal to NULL. – mafutrct Apr 30 at 13:05
show 6 more comments
vote up 8 vote down

I've seen a number of interns write this code in c#:

public type Property
{
    get { return Property; }
    set { Property = value; }
}
link|flag
6  
BTW: Are non-programming related questions "stack overflow exceptions"? – EricSchaefer Oct 26 '08 at 13:01
show 5 more comments
vote up 55 vote down

The best of sign of inexperienced programmer is the one who constantly rushes headlong into the latest technology. This person wants to immediately apply any new trinket into the mission critical app they are working on. Incidentally, this is a leading cause of project cost overruns and failure.

The number two sign of an inexperienced programmer is the one who can't abandon their pet solution when it doesn't work. They will spend hours and days trying to coax it to work instead of wiping the slate and changing direction.

link|flag
1  
I tend to like playing with new tinkets early on in development, but after the first 1/3, I tend to get very nervous with going to new stuff. The learning curves just lead to too many mistakes. – Nazadus Nov 16 '08 at 14:45
2  
guilty! I do that pretty often, but not so much anymore, i'll wipe a project, I insist on using the new hawtness tho so i can learn on the company's budget lol – firoso Apr 7 at 3:52
1  
Indeed - but "reinventing the wheel" is the other extreme. Where EVERYTHING is re-done regardless of whether it worked or not. Often related to the "Not Invented Here" syndrome. – MadKeithV Apr 30 at 11:59
4  
Re: "constantly rushes headlong into the latest technology". I know this is blasphemy, but I try to do it as much as I can. Projects I often work on can often take more than 6 months to release. Just in time for first stable version of the product I am using to be released. The only way to keep up with the market. And I don't remember being burned ever. Even if it happens sometime in future, it will be first time after many such projects. – Dan May 20 at 17:25
show 4 more comments
vote up 16 vote down

Writing O(N!) code and passing it off as a working solution.

That irritated me.

link|flag
7  
At least the guy has a working knowledge of recursion. – mamama Oct 26 '08 at 8:28
6  
At least it wasn't hyperfactorial. – TraumaPony Oct 27 '08 at 5:21
show 2 more comments
vote up 38 vote down

Probably the most tell-tale sign is an inability to properly factor out code into separate easy-to-understand chunks. If you're regularly encountering functions that are hundreds of lines long, or nested to four or more levels, it's probably a good sign that they're inexperienced.

link|flag
4  
"functions that are hundreds of lines long" Yeaaaaaaaah, I wish I could charge that to inexperience only. long sigh – Paul Nathan Oct 26 '08 at 4:26
show 2 more comments
vote up 24 vote down

I think the complexity is the easiest way to sniff out a new coder. Experienced coders are in their soul lazy. They want things to be readable and they don't like to have to remember what a variable or type is. They realize that the simpler the code is the easier it is to debug and the less likely it is to break. New coders over complicate things. Another thing that I think a new coder does is re-invent the wheel. Not really their fault they just don't know enough about wheels that were already invented.

link|flag
vote up 21 vote down

Two giveaways:

Language religion. There is no "one true language," but it can take time and experience to realize that.

The belief that complexity is a virtue.

link|flag
show 3 more comments

Your Answer

Get an OpenID
or

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