More specifically, what types of mistakes do you most commonly see in code from really green (inexperienced, not the Al Gore kind) programmers?
|
85
|
|||||||||
|
|
|
when the following would have worked fine:
|
|||
|
|
I've seen a number of interns write this code in c#:
|
||||
|
|
|
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.
|
|||
|
|
|
|
|
||||||||||||
|
|
|
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. |
|||
|
|
|
|
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 :) |
|||
|
|
|
|
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. |
|||
|
|
|
|
Not realizing that the
|
||||
|
|
|
If you think O(n) is more flexible than O(1) because it has a variable, you are inexperienced. Common and Real mistakes:
|
|||
|
|
Coding by superstition. |
|||
|
|
|
|
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.) |
|||
|
|
Using constants in code and wildly hunting for them whenever they need to be changed. |
|||
|
|
|
|
Coding newbie mistakes:
Coding group newbie mistakes:
|
|||
|
|
|
|
|
||||||||
|
|
|
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). |
|||
|
|
2 words: arrow code For those not familiar with the term:
|
|||
|
|
|
|
things that boil down to:
instead of
and for-case structures. |
|||
|
|
|
|
Gratuitous usage of reflection. |
||||
|
|
|
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. |
|||
|
|
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?). |
||||
|
|
|
Usually when you see something like this:
|
|||
|
|
A few I've seen:
|
|||
|
|
|
|
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. :-) |
|||
|
|
|
|
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. |
|||
|
|
|
|
To be honest, even experienced coders--though perhaps barring the godly ones--are guilty of all of these but I think the scale of these mistakes set experienced and inexperienced coders apart. I also think #6 is the hardest to get "right" & the guy that can massage out the necessary user requirements isn't necessarily the best programmer either. In theory, a good business analyst--if you have one handy--can capture the correct requirements. In practice, the programmer needs to understand the business well enough to notice oversights in design and tease out unspoken assumptions on the business side. |
|||
|
|
|
|
In the following, "files" is a very large array of strings. This was also a design decision made by the programmer in questions.
|
|||
|
|
|
|
|
|||
|
|
|
|
instead of
can cost a function call, instead of a single machine instruction. |
||||
|
|
|
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. |
|||
|
|
