vote up 162 vote down star
64

I know most people have code review and standards in place, but I work at a place with poor standards. I'm not saying that my code is flawless by any means, but I find the code my fellow members submit is totally lacking of structure, standards, naming convention, etc. Whole code blocks that have been replaced are still left commented out in the final product. I'm not going to get into the actual correctness of the code, but these issues make it virtually impossible to debug when my boss inevitably comes to me to fix my team members' problems before send out their app..

My question is this, how do you guys handle poor quality code from your team members? If you work in a less structured environment, how do you approach coders about improving the quality of their own code (or your boss to get him to implement some kind of standards/code review)?

Thanks guys.

flag

44 Answers

prev 1 2
vote up 0 vote down

I'm not sure if it depends if you've got a leadership position (from official company hierarchy or from technical merit) in the team or not. Getting the other team member to review your code and taking on their comments and ideas might better help them understand the wonders of code review and proper structure.

If you just try to force standards on people I've often found that code reviews decent into people complaining about how you've placed a } on the wrong line or haven't included a space after a , while missing actual problems like unchecked return values or the like.

link|flag
vote up 3 vote down

Does your workplace have no standards or just poor standards? No standards would be no formal documentation on what the standards are, poor standards would be standards writen down but deficient in some way. It is much better to have some formal standards then no standards at all.

How you improve or introduce standards depends on your role in the organization, if you are junior it will be a challenge and you will need a soft approach. If you are senior, well it will probably still need to soft, but as a senior developer you should be at least partially responsible for setting your organizations coding standards. If you are a team lead or manager it will be easier as you can dictate the standards you want. Though I have found it is much better to use a collaborative approach to most things. Some you may not want to leave up for discussion, like the correct use of source control.

If you have no formal code review process you can always start an informal one. Ask one of your coworkers to help you out on something, ask them questions on how they think your code is. Hopefully they will have some useful suggestions. When done suggest to them that you could look at some of the code they are working on, if they need any help. In an information situation you don't want to use "review" or "code review", look, help, suggest.

I was recently on a short project that involved reviewing a 3rd party's code, one of the issues with the code was there were no standards, from the 3rd party or our mutual client. Because there were no standards I could not provide any feedback on if the code met standards which lowered the value of my feedback. I did identify inconsistencies in their code base but without a standard to could not tell them how they should change things.

link|flag
vote up 0 vote down

Use the formatter of your IDE, and get the manager to enforce its use by all programmers. If everyone is using the same format settings, and the directive is to check in code with no errors or warnings, at least code format can be improved.

Unfortunately this won't improve design, such as lack of object oriented design.

Edit Justin Standard

You've got a point that this helps a little bit, but I'm guessing that formatting is only a minor problem compared to a lack of automation and a poor design. Still, I suppose it is an easy step to take. Taking it a step further is using tools like FindBugs for java (or similar tools in other languages) to actually analyze the complexity of the code. Some of those tools have IDE plugins as well.

link|flag
vote up 2 vote down

I agree with everyone regarding code reviews, but code reviews rarely ever reveal bugs.

In our team I found out that the person who was least open to test-driven development, and don't even write tests after his code, is the one who generates the most WTFs in the code. His liability isn't just poor code -- some people just refuse to learn anything new. How to handle them? Elicit the help of the project manager. Some people need to feel the threat of being fired so that they will change.

link|flag
vote up 0 vote down

As you try to bring code reviews into an environment like this, remember that they need to work both ways. You need to get one of those less-effective programmers to review your code and learn by example. They also need to make comments in reviews of your code that you actually incorporate. Make sure that they understand that the code reviews aren't there to give you a chance to tell them when they're screwing up, but to give everybody on the team a chance to learn from everybody else.

If the code reviews and the stuff everybody else mentioned don't have any impact, it's probably time to get rid of some bad apples. (Assuming you have the authority to do that.)

link|flag
vote up 12 vote down

I'm amazed at the number of comments that haven't remarked on this:

Automatic documentation

It's not a code review, except everyone reviews (at least some aspects of) the code. I've seen this work exceptionally well, and it'll affect you as well. It works because everyone wants to look good, and if autodocs of the code is displayed publicly, at least those aspects will be much improved.

Looking good vs. being good

If the code looks good, even to your completely untutored bosses, odds are that even if the algorithms are dumb, it will be a lot easier to fix simply by being more readable. Another benefit of showing the autodocs is that it's a lot easier to talk about module xyz using bogosort and why it's a problem when xyz is a black box rather than an oil-spill.

One thing though: You need to pick an autodoc format that makes the difference visible, and get people to see it. You can try to work this in by showing and referencing it when reporting your work. You want people to read new docs, much like they would read the news.

It's related to code review and tends to grow in that direction, yet noone thinks of it that way...

link|flag
vote up 0 vote down

Code reviews are good, and can be introduced relatively informally.

You can automate some rules that you all agree to, using tools like FxCop.

Before you can accuse anyone of failing to meet standards or naming conventions you have to get everyone together to discuss what those standards should be. For instance - a new team member might have come out of Uni thinking Hungarian notation is the only way to go, while the team might allow single letter variables as long as it's in a method's scope and that method is short. Neither is wrong, as long as everyone knows the standard.

In a language where there is a strong IDE, such as all the .Net ones, it's always relatively easy to debug code as long as it compiles. That shouldn't be a reason (on its own) to standardise.

link|flag
vote up 35 vote down

You need to get someone else on your side. You are unlikely to effect much change if you are working solo. If you have some other good programmers on your team, people who commiserate with you about the poor quality of some of the code, they will be your biggest allies. Get them on-board with establishing code reviews and promotion pair programming etc.

If you don't have any other good programmers on your team, it's very likely a lost cause. If you are in this situation, though, and you really want to try to fix some of the problems, then you need to get your boss on board. Phrase the problems in ways that make sense to him (or her). If you talk about how much it sucks when you have to fix code, you're going to get tuned out. You need to talk about how making these changes will bring in more money, increase morale, and save the whales.

In any event, you will definitely need to get your boss on board with any changes. I strongly recommend reading Controlling your boss for fun and profit by I. M. Write (Eric Brechner)

link|flag
vote up 3 vote down

Take the initiative and start a weekly code review. Tell everyone you just want some feedback on your own stuff, but encourage them to bring their own code too. Start small, and maybe the idea will take root.

link|flag
vote up 1 vote down

The main problem with telling people that their code is 'wrong' is that they might get mad or offended etc. So rather than explicitly telling people that their code is wrong just show them the better way to do in a more conversational manner. For example, Lets say that someone is duplicating code by not inheriting properly from a base class. Rather than telling them: 'Hey dummy B should derive from A', you could go up to them and say: 'Hey look at this cool way I used inheritance to solve this problem'.

Hopefully they will see the similarities and will fix it them selves. If they don't see the similarities you could be a little more heavy handed and ask them if there is anywhere they could use this method.

link|flag
vote up 24 vote down

Everyone writes bad code from time to time, but having code reviews eliminates a lot of it. Always try to be nice to your colleagues, and never think that you know better. Be humble since it's actually easy to be wrong about stuff. :-)

Code reviews doesn't only eliminate poor code written by team members (and yourself), but is a great way to learn new things from each other.

link|flag
vote up 0 vote down

Segregating those individuals is rather like pretending the problem doesn't exist, isn't it?

Assuming some of the devs are new, I'd have to agree w/ @Campbell, a bit of mentoring can turn things around and if you haven't given a person a chance with all the details they'll need, then perhaps your team is a bit of a black box. Are you integrating other new dev members easily?

If after all that, you find yourself spending a lot of time thinking that a dev doesn't belong on the team, they need to go sooner rather than later, or you'll always wind up regretting it and be the one responsible for their mess.

If you're not the decision maker, then I guess most of this depends on your relationship with your boss and if you're comfortable making noise.

link|flag
vote up 2 vote down

Try careerbuilder.com.

link|flag
vote up 8 vote down

I tend to conduct a code review, from which I fill in a checklist.

If it's purely a coding standards issue I will get them to review our standards document and then sort it out themselves.

If it's a lack of understanding then I find a bit of mentoring goes a long way. I take them through a better approach to solving a problem and do my best to educate.

In our place part of the development process is code review so code is not released to test without one.

Sounds like in your place you don't have a process. Create a process then get people to stick to it. That should help improve quality across the board.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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