c++ Programming Glossary: excellent
How to debug heap corruption errors? http://stackoverflow.com/questions/1010106/how-to-debug-heap-corruption-errors from dmalloc and electricfence and the surprisingly excellent book Writing Solid Code sentry values allow a little more space..
Very poor boost::lexical_cast performance http://stackoverflow.com/questions/1250795/very-poor-boostlexical-cast-performance Original answer Just to add info on Barry's and Motti's excellent answers Some background Please remember Boost is written by..
throwing exceptions out of a destructor http://stackoverflow.com/questions/130117/throwing-exceptions-out-of-a-destructor will be left to handle the situation. Scott Myers has an excellent article about the subject in his book Effective C Edit Apparently..
How to get the cpu usage per thread on windows (win32) http://stackoverflow.com/questions/1393006/how-to-get-the-cpu-usage-per-thread-on-windows-win32 time is expressed in Coordinated Universal Time UTC Here a excellent article from Dr. Dobb's Win32 Performance Measurement Options..
What is “cache-friendly” code? http://stackoverflow.com/questions/16699247/what-is-cache-friendly-code and proper programming Agner Fog's page . In his excellent documents you can find detailed examples covering languages..
Floating point vs integer calculations on modern hardware http://stackoverflow.com/questions/2550281/floating-point-vs-integer-calculations-on-modern-hardware and profiling it afterwards. Anyway thanks for all your excellent answers and help. Feel free to add anything else . c x86 floating..
c/c++ source code visualization? http://stackoverflow.com/questions/27857/c-c-source-code-visualization share improve this question Doxygen is really excellent for this although you will need to install GraphViz to get the..
Generate random numbers uniformly over an entire range http://stackoverflow.com/questions/288739/generate-random-numbers-uniformly-over-an-entire-range correlate and the sequence is deterministic . Knuth has an excellent if hard to read treatise on random number generators and I recently.. random number generators and I recently found LFSR to be excellent and darn simple to implement given its properties are OK for..
What C++ pitfalls should I avoid? [closed] http://stackoverflow.com/questions/30373/what-c-pitfalls-should-i-avoid frequently crop up when developing in the language. Some excellent books on this subject are Effective C Scott Meyers More Effective..
Why does C++ support memberwise assignment of arrays within structs, but not generally? http://stackoverflow.com/questions/3437110/why-does-c-support-memberwise-assignment-of-arrays-within-structs-but-not-gen but I don't know enough to confirm it myself. edit 2 Many excellent responses. I choose Luther Blissett 's because I was mostly..
Why are unnamed namespaces used and what are their benefits? http://stackoverflow.com/questions/357404/why-are-unnamed-namespaces-used-and-what-are-their-benefits has to be put into an anonymous namespace. Read the excellent article at comeau computing `Why is an unnamed namespace used..
How do I make a fully statically linked .exe with Visual Studio Express 2005? http://stackoverflow.com/questions/37398/how-do-i-make-a-fully-statically-linked-exe-with-visual-studio-express-2005 My current preferred C environment is the free and largely excellent Microsoft Visual Studio 2005 Express edition. From time to time..
Virtual functions and performance - C++ http://stackoverflow.com/questions/449827/virtual-functions-and-performance-c for performance improvements are in algorithms and I O. An excellent article that talks about virtual functions and more is Member..
Are inline virtual functions really a non-sense? http://stackoverflow.com/questions/733737/are-inline-virtual-functions-really-a-non-sense functions can be inlined sometimes. An excerpt from the excellent C faq The only time an inline virtual call can be inlined is..
Of Memory Management, Heap Corruption, and C++ http://stackoverflow.com/questions/7525/of-memory-management-heap-corruption-and-c already doing that. Give valgrind more of a go it's an excellent tool and I only wish it was available under Windows. I only..
Position of least significant bit that is set http://stackoverflow.com/questions/757059/position-of-least-significant-bit-that-is-set improve this question Bit Twiddling Hacks offers an excellent collection of er bit twiddling hacks with performance optimisation..
Compile a DLL in C/C++, then call it from another program http://stackoverflow.com/questions/847396/compile-a-dll-in-c-c-then-call-it-from-another-program all the flags etc. needed to build DLLs take a look at the excellent Code Blocks which works very well with MinGW. Edit For more..
What is the closest thing windows has to fork()? http://stackoverflow.com/questions/985281/what-is-the-closest-thing-windows-has-to-fork
|