vote up 1 vote down star

While peer programing what is the most optimal way to offer constructive criticism?

How do you critique without pointing out flaws?

flag

6 Answers

vote up 5 vote down check

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.

link|flag
Nothing better than knowing there's a reason why you might improve something and being able to agree that it is something to consider. – Nick Bedford Oct 9 at 3:23
vote up 0 vote down

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.

link|flag
vote up 2 vote down

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).

link|flag
Yes! Assume intelligence: fishbowl.pastiche.org/2009/10/… – Mike Ottum Dec 1 at 6:39
vote up 2 vote down

There's a fine line between

Hey, buddy! Perhaps System.exit(1) is not the best way to handle that ParseException?

and

Who the hell names their variable "date37"?

Which is why the optimal way is to not do pair programming :-)

link|flag
vote up 1 vote down
  1. Always point out specific suggestion on how to improve, not just what needs improvement.

  2. Always point out exact reasons WHY a change offered is beneficial.

  3. Preferably, point out how it's beneficial for the reviewed (e.g. saves him time later on)

  4. Put shades on criticism. Meaning, "this one point is a must to fix for those N reasons. These 2 places I would strongly recommend changing for those reasons but only if you have a spare hour to redesign. And these 5 points are minor and probably somewhat subjective, so I will give you my POV and let you decide on whether to take my advice"

Same rules as for code reviews, BTW.

link|flag
vote up 3 vote down

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!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.