More specifically, what types of mistakes do you most commonly see in code from really green (inexperienced, not the Al Gore kind) programmers?
|
83
|
|||||||||
|
|
|
|
||||||||||||||||||||
|
|
|
This made me a sad panda
|
||||||||||||||||||||
|
|
|
|
||||||||||||||||||||
|
|
|
OK, so I was bored ... an in truth, some of these only mean you are an OLD developer :) If your code looks like it was written by a committee, you might be an inexperienced developer. If you put comments on every other line of code, you might be an inexperienced developer. If you have never spent more than 4 hours debugging something stupid and obvious, you might be an inexperienced developer. If your code has nested goto statements, you might be an inexperienced developer. If you still write in a language with “basic” in the name, you might be an inexperienced developer. If you have never seen the sun rise and set and rise again while working on a project, you might be an inexperienced developer. If you don’t have a religious opinion on software development, you might be an inexperienced developer. If you use Thread.Sleep() to fix race conditions, you might be an inexperienced developer. If you learn something new, then immediately apply it to EVERY PIECE OF FRACKING CODE YOU WRITE, you might be an inexperienced developer. If you think you are too good to write unit tests for your code, you might be an inexperienced developer. If you have not (yet) learned to despise Hungarian notation, you might be an inexperienced developer. If you have learned to despise Hungarian, and still can’t intelligently argue why it should be used, you might be an inexperienced developer. If you have to fix warnings to compile your code because the compiler treats more than 1000 warnings as an error, you might be an inexperienced developer. If you think design patterns are the Holy Grail for software development, you might be an inexperienced developer. (Or a manager) If you don’t have at least 15 books on programming that you have never read, you might be an inexperienced developer. If you think you have never been guilty of all of the above, you ARE an inexperienced developer. If you don’t know who David Ahl or the Beagle Bros are, you might be an inexperienced developer. If you have never developed software on a team where everyone was smarter than you, you might be an inexperienced developer. If your eight year old kid debugs your code, you might be an inexperienced developer. If you can’t name at least 50 things wrong with the win32 API, you might be an inexperienced developer. If you have never argued with a tester about a bug that is “by design”, you might be an inexperienced developer. If you have never developed on a mainframe, you might be an inexperienced developer. If you have never written anything that uses ASCII graphics, you might be an inexperienced developer. If you have never tried to convince someone that C# is better than Java (or vice-versa), you might be an experienced developer. If you can’t divide hex numbers in your head, you might be an inexperienced developer. If you have never written an application that compiles out to a .com extension (or even know why you would want to), you might be an inexperienced developer. If you have never written a fully functioning application that runs in less than 1k of memory, you might be an inexperienced developer. If you don’t know the difference between 8080 assembler and 6502 assembler, you might be an inexperienced developer. If you have never written software to create music on hardware that doesn’t have any type of sound processor, you might be an inexperienced developer. If you have never been GRUE or WUMPUS hunting, you might be an inexperieced developer. If you have never tried to improve "Eliza", you might be an inexperieced developer. If you can’t relate to any of this, you might not be a developer. /// ==== EDIT I noticed a comment on the original question, why are some of these things wrong? Here are some (random) resources. They range from technically useful, to just history... http://www.amazon.com/Emergent-Design-Evolutionary-Professional-Development/dp/0321509366 http://en.wikipedia.org/wiki/David_H._Ahl http://www.boingboing.net/2006/01/17/dot-matrix-printer-m.html http://www.humanclock.com/webserver.php (25k, but hey - it's a full webserver ...) http://en.wikipedia.org/wiki/Beagle_Bros_Software http://en.wikipedia.org/wiki/Grue_(monster) http://en.wikipedia.org/wiki/Hunt_the_Wumpus http://en.wikipedia.org/wiki/Eliza http://www.joelonsoftware.com/articles/Wrong.html http://blogs.msdn.com/oldnewthing/archive/2005/01/14/352949.aspx http://www.albahari.com/threading/ http://blogs.msdn.com/jfoscoding/archive/2005/08/06/448560.aspx http://msdn.microsoft.com/en-us/library/bb429476(VS.80).aspx http://code.msdn.microsoft.com/sourceanalysis http://www.nunit.org/index.php Heh: http://images.tabulas.com/822/l/dilbert_actual_code.jpg |
||||||||||||||||||||
|
|
|
Using lots of global variables |
||||||||
|
|
|
Letting the compiler do your testing - "it compiled, it's OK" |
||||||||||||||||||||
|
|
|
Copying rather than reusing code. Creating home-brew 'solutions' when framework solutions are available. Code that doesn't bound-check, guard against generating exceptions, doesn't use exception handling, and is brittle. (In my shop where testing is key) Not writing test code. There are other tell-tale signs that aren't in code, of course. |
||||||||||||||||||||
|
|
|
Oh, and this monstrosity: We had a junior programmer who used to do it quite regularly. If I ever am forced to work for a shop insane enough to incentivize based on lines-of-code produced, it'll be at the top of my toolbag:
|
||||||||||||||||||||
|
|
|
Learning one hammer and then using it for all problems that it can handle, even if it is ill suited. For example, learning how to use a database and then using it for all data storage, even when a file would be more appropriate. Or, learning how to access files and then using them for all data storage, even when a database would be more appropriate. Or, learning about arrays and then using them for all data structures, even when hash tables would be more appropriate. Or, learning about hash tables and then using them for all data structures, even when arrays would be more appropriate. |
||||||||||||||||||||
|
|
|
Most of these seem like bad programmers rather than young ones. In my experience young ones typically don't have the savvy of using some best practices and coding for maintainability - they usually want to show off their skills and brains rather than making code easy to read and maintain. Writing bad code is not exclusive to young programmers. |
||||||||
|
|
|
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. |
||||||||||||||||
|
|
|
They've know that C strings need to be terminated with a null character, but haven't yet understood this.
|
||||||||||||||||||||
|
|
|
I've actually seen this:
|
||||||||||||||||||||
|
|
|
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. |
||||
|
|
|
Fear of straying from what they know. I had a newbie programmer who insisted on using arrays for everything because he knew how to use them. He couldn't comprehend that Collections were just an easy-to-use array -- Collections were big, scary objects and therefore too "complicated" to use. Needless to say he didn't really understand how to use arrays, either... |
||||
|
|
|
Not being happier to delete code than to write it. |
||||||||
|
|
|
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. |
|||
|
|
|
|
When the programmer assumes that everything will work out fine ...
|
||||
|
|
|
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. |
|||
|
|
Not asking questions when they don't know. |
|||
|
|
The single biggest giveaway I've seen? Not planning before coding. Unfortunately, this applies to intermediate and many advanced programmers, too. |
||||
|
|
|
|
||||
|
|
|
I've seen this submitted in code samples from many applications. Typically the entire method is inside the try block. |
||||||||
|
|
|
Unnecessary looping. For some reason, junior developers/programmers always loop more times than they have to, nest loops more deeply than they need to, or perform the same operation on a data structure twice, in two (or more) different loops. |
||||||||||||
|
|
|
Writing O(N!) code and passing it off as a working solution. That irritated me. |
||||||||
|
|
|
Wanting to "start over" on large projects whenever something in the existing framework doesn't match their world view. |
||||||||
|
|
|
Not only copying and pasting code, but copying and pasting code with comments and not updating the comments to reflect the new context! |
||||
|
|
|
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. |
||||||||||||||||||||
|
|
|
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 |
||||
|
|
|
This is the one I see most frequently by far Imagine there is a method:
Now you need to use this method from another place. What do they do? THIS:
This problem also extends to "intermediate" level programmers, who have learnt about things like function parameters, but will still do things like this:
.... and repeat again for floats, doubles, strings, etc, instead of just using an |
|||
