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 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. |
|||
|
|
I'd argue that terrible variable naming is one of the best giveaways (along with poor structure). The worst would be two-three letter names for class variables. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Not understanding the concept a = a + 1; When I was a lab assistant in school, I guy came for help with an intro to Fortran assignment and couldn't even program a loop to increment a simple int variable with a = a + 1;. When I refused to write the code for him (after 10-20 minutes of trying to explain the concept) he then declares that I'm an idiot and he knows what he's talking about because he's taken the intro to Fortran class three(!) times. You might say that this wouldn't happen in the real world but I worked with a guy who 'taught himself' to code by supporting some obscure database product. He barely understood the code of the import routines. When our manager forced him to write a program in 'C' (after being to the training class) he would come by for help with the same basic loop/a=a+1 type problem. Needless to say, he didn't pass the test. Sigh. |
|||
|
|
|
|
The biggest giveaway is definitely programmers using |
|||
|
|
|
|
|
|||
|
|
|
|
2 words: arrow code For those not familiar with the term:
|
|||
|
|
|
|
Uninitialized pointers (with a check for NULL -- because the application may have crashed at some point when trying to dereference NULL):
|
|||
|
|
|
|
Most of ASP.Net newbies try to frame the HTML inside the aspx.CS file instead of aspx file. If you hard code the HTML code inside the .CS file there is noway the designer can make the changes without developer support. The code is no longer stable. Eg: Literal lt=new Literal(); lt.Text=" test....."; |
|||
|
|
|
|
Using a word processor to write code. More often than you'd think I've had someone ask me why their code doesn't compile, and it's because they've got some `magic quote characters' instead of just ' or ". |
|||
|
|
|
|
It's when you come up to your new hire and find him reading "C for Dummies". |
|||
|
|
|
|||
|
|
|
|
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. |
|||
|
|
Returning pointers to stack variables is one that I've seen green programmers do a number of times.
int * blah()
{
int x ;
return &x ;
}
char * foo()
{
char x[3] ;
return x ;
}
(with implied use in the caller). In all fairness, lots of non-green programmers do the same thing, but we find less obvious and harder to debug ways to do it (like saving the address to a structure somewhere, and loosing track of where we were when this was done). |
|||
|
|
|
|
Using a method of a class inside that class and the method happens to be something that needs to be static.
|
|||
|
|
|
|
I was always fond of
But maybe that is more inexperienced than you were thinking. |
|||
|
|
|
|
I found this in some code a while back:
|
|||
|
|
|
|
I've actually seen some people using Bubblesort (implemented by themselves, obviously) because they didn't know about Quicksort/Mergesort or thought that their program would need to do "complex comparisons" and that "qsort only sorts ints, floats and doubles". |
|||
|
|
|
|
Doesn't understand how to use comments. May take one of two extremes. There's your blindingly obvious waste-of-keystrokes commenter:
... and there's the "Comments are ALWAYS a complete waste of time!" religious fanatic. If you truly think your code is opaque unless you describe every tiny detail of what it's doing, or if you've never once encountered a comment that told you something you DESPERATELY needed to know and otherwise would have learned The Hard Way ... yeah. Either way, I call green. |
|||
|
|
