More specifically, what types of mistakes do you most commonly see in code from really green (inexperienced, not the Al Gore kind) programmers?
|
85
|
|||||||||
|
|
|
|
||||
|
|
|
|
|||
|
|
You want to know if an integer x is between 0 and 100? Do it this way, of course:
I found something like this inside another loop whose purpose was to determine which elements of an integer array were between 0 and 100. |
|||
|
|
Not realizing that the
|
||||
|
|
|
Not only copying and pasting code, but copying and pasting code with comments and not updating the comments to reflect the new context! |
||||
|
|
|
I've seen this submitted in code samples from many applications. Typically the entire method is inside the try block. |
||||||||
|
|
|
Using a Verdana font to program in.... |
||||
|
|
|
I still sometimes print out information to console when I should have used a logger or entered in debugging mode; so using this:
...is risky because it could end up in production environment. |
|||
|
|
|
|
Wanting to "start over" on large projects whenever something in the existing framework doesn't match their world view. |
||||||||
|
|
|
Another common simple one is:
The problem with this one is what happens if value is null? Yup, a NullPointerException. Happens all the time. Instead it should be:
Reversing the order can never give you a NullPointerException. |
||||||||||||||||||||
|
|
|
I saw this once:
Int32.TryParse, anyone?
|
||||
|
|
|
|
|||
|
|
|
|
I don't know but this seems a tad bit suspicious to me:
where b has a type derived from DerivedType. |
|||
|
|
|
|
Letting the compiler do your testing - "it compiled, it's OK" |
||||||||||||||||||||
|
|
|
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. |
|||
|
|
|
|
|
|||
|
|
Gratuitous usage of reflection. |
||||
|
|
|
When the programmer assumes that everything will work out fine ...
|
||||
|
|
|
They've know that C strings need to be terminated with a null character, but haven't yet understood this.
|
||||||||||||||||||||
|
|
|
The single biggest giveaway I've seen? Not planning before coding. Unfortunately, this applies to intermediate and many advanced programmers, too. |
||||
|
|
|
Using constants in code and wildly hunting for them whenever they need to be changed. |
|||
|
|
|
|
In the following, "files" is a very large array of strings. This was also a design decision made by the programmer in questions.
|
|||
|
|
|
|
I've actually seen this:
|
||||||||||||||||||||
|
|
|
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. 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
(C++) Using unnecessary semicolons to avoid having to remember which blocks actually need them:
(C++) Not even paying lip service to const correctness:
(Modifying a pointer to a string literal is undefined behavior, so this should be
(
(Calling |
||||
|
|
|
I've seen a number of interns write this code in c#:
|
||||
|
|
|
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. |
||||||||||||||||
|
|
|
Writing O(N!) code and passing it off as a working solution. That irritated me. |
||||||||
|
|
|
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. |
||||
|
|
|
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. |
|||
|
|
|
|
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. |
|||
