Search Results

12
votes

What is so bad about Singletons

The singleton pattern is not a problem in itself. The problem is that the pattern is often used by people developing software with object oriented tools without having a solid grasp of OO concepts. …
0
votes

When should you start optimising code?

I would say that optimizations are only required if you have performance issues that cannot be corrected by hardware/platform upgrades within a reasonable cost. If better performance is sti …