Search Results

3
votes

What is the Industry Standard for bugs per 1000 Lines of Code

Zero. Upon release time, every bug turns into a feature. …
0
votes

GOTO still considered harmful?

Using a GOTO can be nice when you are generating C state machines. I would never use a GOTO in hand-written code - "modern" language constructs make it utterly unnecessary. The setjmp/longj …
7
votes

log4j.xml in client jars

Yes, leave it out. It's an utter nuisance when your log4j configuration file is ignored because one of the 60 third-party libraries of your app contains its own. …
3
votes

Stategies for Rebuilding Legacy Applications

Michael Feathers: Working effectively with legacy code presents a number of techniques to work with, and replace, l …
0
votes

Best Practices: hasXXX() methods for possible null returning getXXX() methods.

There are 2 possible reasons for introducing hasXXX(): because hasXXX() communicates its intent better than getXXX() != null, und thus might be …
3
votes

Better to use a list of pairs, or two lists?

The list-of-pairs approach is the obvious thing to do, as it more accurately reflects the intention -- but a Map might be even better, if the IDs are unique. If you have millions o …