Looking at a piece of code, we can learn a lot from its visual structure, even before reading the actual code. Some typical such structures can help us spot possible code-smell.
Posts published in “Design”
Many years have passed since the introduction of “Object Oriented Design” concepts, and many programming languages have decided to adopt that approach, reject it or pick some parts of it…
Exceptions are a fundamental concept of many SW systems. Yet, the right way to use and handle them is not always clear, and highly varies among systems and platforms. This post goes over the most important rules for successful exception handling towards robust and well written systems.
If you are one of this blog’s readers, you are probably familiar with the SOLID principles for OOD software development. The one thing you have never been taught, though, is…