More specifically, what types of mistakes do you most commonly see in code from really green (inexperienced, not the Al Gore kind) programmers?
|
84
|
|||||||||
|
|
|
They've know that C strings need to be terminated with a null character, but haven't yet understood this.
|
||||||||||||||||||||
|
|
|
When the programmer assumes that everything will work out fine ...
|
||||
|
|
|
Gratuitous usage of reflection. |
||||
|
|
|
|
|||
|
|
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. |
|||
|
|
|
|
Letting the compiler do your testing - "it compiled, it's OK" |
||||||||||||||||||||
|
|
|
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?
|
||||
|
|
|
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. |
||||||||||||||||||||
|
|
|
Wanting to "start over" on large projects whenever something in the existing framework doesn't match their world view. |
||||||||
|
|
|
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. |
|||
|
|
|
|
Using a Verdana font to program in.... |
||||
|
|
|
I've seen this submitted in code samples from many applications. Typically the entire method is inside the try block. |
||||||||
|
|
|
Not only copying and pasting code, but copying and pasting code with comments and not updating the comments to reflect the new context! |
||||
|
|
|
Not realizing that the
|
||||
|
|
|
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. |
|||
|
|
|
|||
|
|
|
||||
|
|
|
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
|
||||
|
|
|
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?). |
||||
|
|
|
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 :) |
|||
|
|
|
|
Using comments for a piece of code that should be put into a separate method.
this should be instead:
|
|||
|
|
|
|
If you think O(n) is more flexible than O(1) because it has a variable, you are inexperienced. Common and Real mistakes:
|
|||
|
|
Usually when you see something like this:
|
|||
|
|
Not being happier to delete code than to write it. |
||||||||
|
|
|
I just saw this
|
|||
|
|
|
|
Coding newbie mistakes:
Coding group newbie mistakes:
|
|||
|
|
|
|
|
|||
|
|
|
|
A few I've seen:
|
|||
|
|
