vote up 102 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 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
//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 1 vote down

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

link|flag
vote up 1 vote down

Putting anything in the comments/log/Error statements that they wouldn't want published. I.e. Errors that use one of George Carlin's 7 words Log Statements that would be bad if pushed to production

link|flag
vote up 1 vote down

Inexperienced software designers often attempt to use the Observer Pattern in multi-threaded software without carefully considering deadlocks and race conditions.

link|flag
vote up 1 vote down

Inexperienced developers usually rant a lot about everybody else's code. They're not bad coders, they're just not used to dealing with rotten code everyone usually finds in real life. They still don't have the experience to understand the context behind the code. Was it caused by last-minute requirement changes? Was it caused by real sloppy coding? Was it caused by Dr. Jekyll requirements (looks fine at first but grows up to be a real monster)?

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

Wanting to rewrite every piece of code they aquire. This is a sheer sign of newbieness.

link|flag
vote up 1 vote down

Using input/output parameter types that are way too general and require the caller to understand the innards of the methods to use it and force tight coupling.

SqlDataReader getEmployee(int EmployeeID)
{....}  

void addInvoiceLineItems(object[] LineItems)
{....}
link|flag
vote up 1 vote down
try {
    // some stuff
} catch (Exception e) {
    // should never happen!
}

You shouldn't throw away an exception without logging or anything, even if you think it will never happen! It's made worse when catching any type of exception.

link|flag
show 2 more comments
vote up 1 vote down
  1. Not using code conventions, for example using first-uppercase to name you variables in Java (insert you favorite language here)
  2. Methods that go on and on and on
  3. Everything is in one class
  4. Copy/paste code
  5. Nested loops
  6. Mad chaining (darn, what did just throw that NullPointerException?)
  7. Exception swallowing
  8. Commented out code
  9. System.out.println
link|flag
vote up 1 vote down

Inexperienced programmers typically don't know the Libraries well, so re-implementation of common library functions (say, to parse dates, or escape HTML) is often a good way to tell how much experience somebody has.

link|flag
show 2 more comments
vote up 1 vote down
@Override
public int hashCode() {
   return 0;
}
link|flag
vote up 1 vote down

When someone spends hours repeating a task when they could take 5 minutes to write a script to do it for them and never have to do it again.

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

Not having any unit tests for their code. Or (perhaps, even worse) having """unit tests""" for their code that don't really test anything / test a hundred things at once.

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

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

I just saw this

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

I've seen the following (or similar) code written both by my current colleague and our predecessor.

some_string[strlen(some_string)] = 0;
link|flag
vote up 0 vote down

In a previous job, at the end of my first week a fresh graduate was let go after he'd been there for a couple of months. I had my inklings on the first day that he wasn't really cut out for it when he exclaimed that "wow you can create a csv file from within Excel by changing the file format in the save dialog" to another junior developer.

Anyway I picked up a project he'd been working on a few weeks later and found its performance progressively degraded over time. It didn't take much digging to discover that he'd never been taught what a SQL WHERE clause was. Every time you clicked on a record in a grid, he'd perform a SELECT * again and then iterate through every record to find the one with the id matching that of the selected row. He utilised the same approach once the dialog for editing the record was shown, and again for any foreign keyed fields which were used to populate combo boxes on said forms.

link|flag
vote up 0 vote down

I came across this one a while ago, in some code I inherited from a programmer that simply wasn't able to gather experience, even after several years in the job:

String dir = "c:/foo";
for (int i = 0 ; i < 2 ; i++) {
    //Do stuff in folder
    dir = "c:\bar";
}

I've also met 2nd year programming students that simply couldn't grasp the concept of for loops. There's a giveaway...

link|flag
1  
Valid point, but it was used exclusively inside the loop as source folder to copy files from foo and bar to one target folder. I'd make a copyFrom(String dir) method, or something to that effect, and call it twice with foo and bar as parameters. – Nils-Petter Nilsen May 20 at 20:31
show 1 more comment
vote up 0 vote down

In C;

#ifndef TRUE
#define TRUE 0
#endif
#ifndef FALSE
#define FALSE 1
#endif

You have no idea how easy it is to miss what is wrong with this code when it's buried amongst a bunch of other code, and how hard it is to track down the problems that it causes.

link|flag
vote up 0 vote down

Taking comparison to constants too far.

This is understandable:

if(5 == x) { /* something */ }

but this is taking it too far

if(5 < x) { /* something */ }

especially if there are complex conditions involved.

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

If code segfaults

printf("HERE");
do_something();
printf("HERE");
do_something2();
printf("HERE");
do_something3();
printf("HERE");
do_something4();
printf("HERE");

and counting how many "HERE"s there are before the code segfaults.

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

On the subject of exception handling:

  1. Swallowing an exception and doing nothing with it. (If nothing is done, it should be passed up the call stack)
  2. Swallowing a custom exception and throwing a more generic exception.
  3. Throwing a custom exception as a result of a generic exception being thrown, but not chaining the custom exception to the originally thrown exception.
link|flag
1  
There is an excellent case for #1 if you are in the threadpool, or your function might be called from the threadpool. When I'm using the threadpool, I generally wrap the passed function in a closure so that I swallow the exception (after logging it). Otherwise you bring down everything when the exception is thrown. – Steve Jul 13 at 12:50
show 1 more comment
vote up 0 vote down

Multiple nested regions. (.Net)

link|flag
vote up 0 vote down

Conversions from wide character type to ascii when unnecessary

link|flag

Your Answer

Get an OpenID
or

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