"If debugging is the process of removing bugs, then programming must be the process of putting them in." --Edsger Dijkstra
You might want to check out Applying Mistake-Proofing to Software that introduces the concept of Poka-Yoke or, for a more recent version of poka-yoke applied to software development, Poka-Yoke Your Code. I'm quoting the first reference below:
Poka-yoke is a quality assurance
technique developed by Japanese
manufacturing engineer Shigeo Shingo.
The aim of poka-yoke is to eliminate
defects in a product by preventing or
correcting mistakes as early as
possible. Poka-yoke has been used most
frequently in manufacturing
environments.
To apply poka-yoke to software development and make a process more mistake-proof ("A quality process builds quality into the code. If you routinely find defects during verification, your process is defective." -- M. Poppendieck), the following techniques are in my opinion good practices:
- static typing: with statically typed languages, type checking is performed during compile-time as opposed to run-time
- automated development standards checks with tools like static analyzers (Findbugs, Checkstyle, PMD), similarity analysers (Symian, CPD) or even code beautifier (Jalopy)
- pair programming for an immediate code review of things that need a human brain
- automated testing: BDD (executable specifications), unit testing, integration testing, functional testing, performance testing...
- continuous integration for extreme feedback on build failures
- stop the line culture (if an error occurs, fix it immediately): never let an error propagate further into the system
- early testing ("if you have test and fix cycles, you're testing too late" -- M. Poppendieck)
- exploratory testing: simultaneous test design, execution, and learning.
There is no particular order, all these practice do help and should be taken as a whole to achieve high quality.
And for those who like pictures, this is a poka-yoke method:

Poka-Yoke: with this habit you will never forget to take your cellphone