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 |
|||
|
|
|
|
Inexperienced software designers often attempt to use the Observer Pattern in multi-threaded software without carefully considering deadlocks and race conditions. |
|||
|
|
|
|
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)? |
|||
|
|
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.
|
|||
|
|
|
|
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. |
|||
|
|
|
|||
|
|
|
|
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. |
|||
|
|
|
|||
|
|
|
|
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. |
|||
|
|
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. |
|||
|
|
|
|
|
|||
|
|
I don't know but this seems a tad bit suspicious to me:
where b has a type derived from DerivedType. |
|||
|
|
|
|
I saw this once:
Int32.TryParse, anyone?
|
||||
|
|
|
|
|||
|
|
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
|
||||
|
|
|
Using comments for a piece of code that should be put into a separate method.
this should be instead:
|
|||
|
|
|
|
I just saw this
|
|||
|
|
|
|
I've seen the following (or similar) code written both by my current colleague and our predecessor.
|
|||
|
|
|
|
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... |
||||
|
|
|
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. |
|||
|
|
|
|
Taking comparison to constants too far. This is understandable:
but this is taking it too far
especially if there are complex conditions involved. |
|||
|
|
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) |
|||
|
|
|
|
Conversions from wide character type to ascii when unnecessary |
|||
|
|
|
|
|
|||
|
|
|
|
irrational wishes (of this sort) without regard for readability, maintainability, etc. |
|||
|
|
