Search Results

1
vote

Guidelines to improve your code

I use PC-Lint on my C++ projects and especially like how it references existing publications such as the MISRA guidelines or Scott Meyers' "Effective C++" and "More Effective C++". Even if you are …
1
vote

Is UML practical?

One of the problems I have with UML is the understandability of the specification. When I try to really understand the semantics of a particular diagram I quickly get lost in the maze of meta-mode …
2
votes

Magic numbers vs named constants

I tend to use constants over magic numbers almost exclusively. I think it increases readably and gives you one point in the program to fix any errors. There are several magic '60's, for example: …