When reviewing somebody else's code, what is it that you usually find most disturbing?
|
3
|
|||||||||||||||||
|
|
|
Where to start? The fact that most Java programmers don't remember to close files? In C, it's usually rampant cut and paste or explict if...then...else logic for every possible case, when it could have been done in a more general way. From experienced programmers, I often see premature optimization; the code is incredibly complex because it works a few cycles faster on the archetecture that we happen to be on today. Maybe. |
||
|
|
Extremely complex and clever ways to do things that can (and should) be done in much simpler ways. The other side of this coin is extremely unclever and complex ways to do things that can (and should) be done in much simpler ways. Common manifestation: doing things that should be done in the database in application code, for example, simple aggregate functions like |
||
|
|
Lack of comments in the code yet detailed explanations in the review email. |
||
|
|
Basic best practices are the things that I find most disturbing, for instance in Java when I see this
When something like this would have been better
Especially when IDEs like Eclipse can automatically clean up your code. Or you could use something like checkstyle to assure your code follows some template |
||||||||||||
|
|
|
Working in a group environment I find it disturbing when different developers use different coding styles in the same document; sometimes even in the same function. You can come up with detailed coding standards, but a primary rule should be 'make your changes to a file look like the existing code in the file." ...and what Cyril Gupta said... |
||
|
|
Usually that they can write better code than me. |
||||
|
