More specifically, what types of mistakes do you most commonly see in code from really green (inexperienced, not the Al Gore kind) programmers?
|
85
|
|||||||||
|
|
|
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 |
|||
|
|
|
|
I've seen the following (or similar) code written both by my current colleague and our predecessor.
|
|||
|
|
|
|
Coding by superstition. |
|||
|
|
|
|
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. :-) |
|||
|
|
|
|
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... |
||||
|
|
|
Taking comparison to constants too far. This is understandable:
but this is taking it too far
especially if there are complex conditions involved. |
|||
|
|
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.
|
|||
|
|
|
|
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. |
|||
|
|
|
|
Not asking questions when they don't know. |
|||
|
|
Re-implementing library functions without realizing it. |
||||
|
|
|
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.) |
|||
|
|
|
||||||||
|
|
|
things that boil down to:
instead of
and for-case structures. |
|||
|
|
|
|
Inexperienced software designers often attempt to use the Observer Pattern in multi-threaded software without carefully considering deadlocks and race conditions. |
|||
|
|
|
|
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. |
|||
|
|
|
|
If code segfaults
and counting how many "HERE"s there are before the code segfaults. |
|||
|
|
On the subject of exception handling:
|
||||
|
|
|
Multiple nested regions. (.Net) |
|||
|
|
|
|
Passing structures across compile domains. Passing structures in general. not understanding the dangers of malloc(), strcpy(), strlen(), scanf(), etc. Trying to use an equal with floating point numbers. (In general not understanding floating point while trying to use it). Using ghee whiz features of a language or tool, just because it makes them feel special or superior, etc. Or just because. Not understanding the cost or risk. Using a new (to them) language on a project just because they wanted to learn the new language. Never learning assembly. Never disassembling and examining their code. Never questioning things like globals, a single return per function, goto's. That doesnt mean use them that means question the teacher (after you pass the classes and get your diploma). Not understanding the dangers of local variables. Not understanding the dangers of local globals (locals with the word static in front of them). Doing things like this: unsigned int *something; unsigned char *cptr; ... cptr=(unsigned char)something; ... Then using *cptr or cptr[] Doing things like this: unsigned int IamLazy; IamLazy=I.am.too.lazy.to.type; Just because you are to lazy to type. Not understanding the implications of that action. If you cannot install the software you wrote on a computer, you are not a developer. If you cannot install the operating system on a computer then install your software you are not a developer. If you cannot repair the operating system on the computer that runs your software, you are not a developer. If you cannot build a computer from a box of parts (motherboard, memory, processor, hard disks, etc) well I will let it go, normally that is the first task on the first day of your first job, then the os, then the compilers/tools. If you make it that far then you might be allowed to write code. |
|||
|
|
|
|
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)? |
|||
|
|
Doing shotgun-style modifications to an existing codebase in order to get something running without paying attention to how those changes affect the rest of the system. |
|||
|
|
|
|
Wanting to rewrite every piece of code they aquire. This is a sheer sign of newbieness. |
|||
|
|
|
|
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.
|
|||
|
|
|
|
Conversions from wide character type to ascii when unnecessary |
|||
|
|
|
|
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. |
|||
|
|
|
|||
|
|
|
|
irrational wishes (of this sort) without regard for readability, maintainability, etc. |
|||
|
|
|
|
In web development not understanding the difference between the client and server is something that I've seen quite a few times from new developers. I've been asked why this didn't work plenty of times (ie - why my doesn't my alert show):
(I think that code's right :P). And using alerts for debugging JavaScript, man that is such a frustrating thing to see, particularly when using Firebug! |
|||
|
|
|
|
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. |
|||
|
|
I'd argue that terrible variable naming is one of the best giveaways (along with poor structure). The worst would be two-three letter names for class variables. |
|||
|
|
