More specifically, what types of mistakes do you most commonly see in code from really green (inexperienced, not the Al Gore kind) programmers?
|
85
|
|||||||||
|
|
|
On the subject of exception handling:
|
||||
|
|
|
One junior developer I've worked with, has a particularly amusing (in a sad) way of deflecting issues with his code onto others. However instead of coming out with believable claims about where the issue lies, he'll go for broke and say it's a bug in C# or WPF, or sometimes more generically just that it's a "Microsoft Bug". I'm not sure whether the fact that people who should know better blanketly believe him is worse than his attempts to cover up his lack of understanding (as he doesn't "like" reading technical books and rushes head first into any new technologies he has to use). |
|||
|
|
If code segfaults
and counting how many "HERE"s there are before the code segfaults. |
|||
|
|
Hand-built Date/Time Functions. Usually when a programmer shows me some of his old code (written when he was just starting in programming), there are at least one or two functions to add/subtract dates, or get the total number of days in a given month (e.g., 28 for February). Experienced programmers have learned that dates are actually very complicated, and so they use their language's built-in date/time libraries so that they don't have to deal with time zones, leap years, leap seconds, daylite savings, etc, etc. |
|||
|
|
|
|
Inexperienced software designers often attempt to use the Observer Pattern in multi-threaded software without carefully considering deadlocks and race conditions. |
|||
|
|
|
|
things that boil down to:
instead of
and for-case structures. |
|||
|
|
|
|
|
||||||||
|
|
|
Beyond the obvious of rolling your own solution to common problems with common solutions... a = 3; a = 3; // Sometimes the first set doesn't seem to work. Or other forms of superstitious programming. You really only see such when the person writing it doesn't undestand what they're doing. Though I swear, while in college, I once made something in C compile by adding the line: short bus; // This program rides the short bus. I kid you not. (and no, there was no reference to 'bus' in the program. To this day, I'm not sure how it fixed the issue, but I was surely a noob at the time.) |
|||
|
|
Re-implementing library functions without realizing it. |
||||
|
|
|
Not asking questions when they don't know. |
|||
|
|
In C;
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. |
|||
|
|
|
|
In a static language using switch statements all over the place when inheritance will solve your problem. Example is simple but I hope illustrates the point.
Vs.
|
|||
|
|
|
|
Taking comparison to constants too far. This is understandable:
but this is taking it too far
especially if there are complex conditions involved. |
|||
|
|
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:
I've also met 2nd year programming students that simply couldn't grasp the concept of for loops. There's a giveaway... |
||||
|
|
|
I once came accross a code like this:
Not only the guy didn't know anything about arrays and loops but he also lacks experience about how different are the months within a year. :-) |
|||
|
|
|
|
Coding by superstition. |
|||
|
|
|
|
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. |
|||
|
|
|
|
I've seen the following (or similar) code written both by my current colleague and our predecessor.
|
|||
|
|
|
|
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 |
|||
|
|
|
|
A few I've seen:
|
|||
|
|
|
|
|
|||
|
|
|
|
Coding newbie mistakes:
Coding group newbie mistakes:
|
|||
|
|
|
|
I just saw this
|
|||
|
|
|
|
Not being happier to delete code than to write it. |
||||||||
|
|
|
Usually when you see something like this:
|
|||
|
|
If you think O(n) is more flexible than O(1) because it has a variable, you are inexperienced. Common and Real mistakes:
|
|||
|
|
Using comments for a piece of code that should be put into a separate method.
this should be instead:
|
|||
|
|
|
|
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 :) |
|||
|
|
|
|
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?). |
||||
|
|
|
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.
versus
|
||||
|
