While peer programing what is the most optimal way to offer constructive criticism?
How do you critique without pointing out flaws?
|
|
While peer programing what is the most optimal way to offer constructive criticism? How do you critique without pointing out flaws? |
|||
|
|
|
|
Tell them why, not what. Nobody wants to hear what they're doing wrong, even people with open minds can get tired of that. Rather, people want to know what the possible downfalls are. If X is good, but Y does it better, don't say that. Tell them what X might fail at, and suggest Y as an improvement. Let them improve themselves, only show them where. |
|||
|
|
|
I believe if you are going to tell somehow how to improve, that first off they have to want to improve. Otherwise any suggestions will be seen as an insult to them. So rule number one is to have a company ethic of perfecting their craftsmanship. This also means that no one is "above the law" so to speak. Suggestions for improved code go both directions, and a mutually beneficial dialogue is created. It is all about "Why?" Why is one way better than another? Let's discuss, and in the process both improve our skills. |
|||
|
|
|
|
One thing I've found helpful when doing code reviews is instead of saying "You shouldn't do X, you should do Y instead" I'll instead ask "Why did you do X instead of Y?". I find that this tends to put everyone on more equal footing. Rather than the reviewee being in a position of defending their choices, the two of you are evaluating the alternative options together. Sometimes the reviewee has good reasons for doing things differently than you expected (and these are often reasons to add documentation or tests). |
|||
|
|
|
There's a fine line between
and
Which is why the optimal way is to not do pair programming :-) |
|||
|
|
|
|
Same rules as for code reviews, BTW. |
|||
|
|
|
|
Instead of focusing on the flaw, focus on the improvement that can be made. Of course, it depends -- it helps a lot to know the person involved. I used to work with a guy who thought it was great when I acted like the most trivial typo was going to destroy the world! |
|||
|
|