c++ Programming Glossary: maintainability
C++ compile time program wide unique numbers http://stackoverflow.com/questions/1222922/c-compile-time-program-wide-unique-numbers
Sell me on const correctness http://stackoverflow.com/questions/136880/sell-me-on-const-correctness focused on the benefits of using const for correctness and maintainability purposes although it is also nice to have an idea of the performance..
Most crucial elements in a light-weight C++ coding standard [closed] http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard which minimizes the risk of enigmatic bugs which increases maintainability etc. Don't cast your vote in any direction on candidates you..
C++ build systems http://stackoverflow.com/questions/2847730/c-build-systems that has better comprehensibility ease of use and maintainability than e.g. make but is still powerful enough to handle a complex..
Effective optimization strategies on modern C++ compilers http://stackoverflow.com/questions/2932515/effective-optimization-strategies-on-modern-c-compilers has a cost in terms of complexity reliability and maintainability. For this particular application increased performance is worth..
How do I share a constant between C# and C++ code? http://stackoverflow.com/questions/3146017/how-do-i-share-a-constant-between-c-sharp-and-c-code to type definitions only. Any other suggestions c# c idl maintainability share improve this question C# and C have differing models..
Can const-correctness improve performance? http://stackoverflow.com/questions/3435026/can-const-correctness-improve-performance in your C or C code is not a good practice with regards to maintainability but also it may allow your compiler to perform optimizations... const correctness is a good thing with respect to maintainability. Otherwise clients of your class could break that class's internal..
Ternary operator ?: vs if…else http://stackoverflow.com/questions/3565368/ternary-operator-vs-if-else
When should you use constexpr capability in C++11? http://stackoverflow.com/questions/4748083/when-should-you-use-constexpr-capability-in-c11 constant to a number. It basically provides a good aid to maintainability as it becomes more obvious what you are doing. Take max a b..
Static members class vs. normal c-like interface http://stackoverflow.com/questions/4977330/static-members-class-vs-normal-c-like-interface Your proposal with namespaces has a slight weakness in maintainability if you need to change the interface for some reason you have..
Is this a reasonable use of the ternary operator? [closed] http://stackoverflow.com/questions/522919/is-this-a-reasonable-use-of-the-ternary-operator the ternary operator closed Are there any understanding maintainability issues that result from code like inVar1 0 NULL v.push_back..
C++: When to use References vs. Pointers http://stackoverflow.com/questions/7058339/c-when-to-use-references-vs-pointers version and break during runtime it makes sense from a maintainability perspective to use references where an object MUST be present..
New (std::nothrow) vs. New within a try/catch block http://stackoverflow.com/questions/7277637/new-stdnothrow-vs-new-within-a-try-catch-block checking if new succeeded based entirely on readability maintainability and performance while disregarding de facto c programming convention...
To “if, if, if” or to “if, else if, else if, else” [closed] http://stackoverflow.com/questions/7414890/to-if-if-if-or-to-if-else-if-else-if-else a arguable preferential one in terms of extendibility maintainability aesthetics etc... I know this is probably an inconsequential.. for both the versions. But the 1st version is better in maintainability aspect if you compare just with the 2nd version. The code exits..
The Pimpl Idiom in practice http://stackoverflow.com/questions/843389/the-pimpl-idiom-in-practice so let me list my top priorities Code clarity Code maintainability Performance I always assume that I will need to expose my code..
passing a pointer by reference in c++ http://stackoverflow.com/questions/9231483/passing-a-pointer-by-reference-in-c why he believes there is. What might be the cause is for maintainability where if you wanted to switch from unsigned char to char you'd..
What is the difference between C++ and Visual C++? [duplicate] http://stackoverflow.com/questions/969297/what-is-the-difference-between-c-and-visual-c
|