About 18,400 results
Open links in new tab
  1. General C++ Performance Improvement Tips - Stack Overflow

    Could someone point me to an article, or write some tips right here about some C++ programming habits that are generally valid (no real drawbacks) and improves performance? I do not mean …

  2. Virtual functions and performance - C++ - Stack Overflow

    Jan 16, 2009 · In my class design, I use abstract classes and virtual functions extensively. I had a feeling that virtual functions affects the performance. Is this true? But I think this performance …

  3. performance - Are exceptions in C++ really slow? - Stack Overflow

    Dec 12, 2012 · The main impact on performance was the possibility of exception specifications (removed in C++11), which however were never fully implemented by the main Windows C++ …

  4. performance - What's your favorite profiling tool (for C++) - Stack ...

    3 For Windows development, I've been using Software Verification's Performance Validator - it's fast, reasonably accurate, and reasonably priced. Best yet, it can instrument a running …

  5. Is C notably faster than C++ - Stack Overflow

    The C++ language is more complex than the C language, but from a performance point of view there shouldn't be a notable difference in either way. Some C++ constructs are faster than the …

  6. How much faster is C++ than C#? - Stack Overflow

    Also, performance of the C++-based UWP/WinUI's is horrible compared to the C#-based WPF. I think because it was C++ they decided they didn't have to think about performance, while the …

  7. List of common C++ Optimization Techniques - Stack Overflow

    Can I have a great list of common C++ optimization practices? What I mean by optimization is that you have to modify the source code to be able to run a program faster, not changing the compiler

  8. What is the performance overhead of std::function?

    Feb 20, 2011 · 120 There are, indeed, performance issues with std:function that must be taken into account whenever using it. The main strength of std::function, namely, its type-erasure …

  9. Does try-catch block decrease performance - Stack Overflow

    May 28, 2013 · Actually performance wise try catch adds a little bit of overhead. But considering the merit of catching the unknown exceptions it is very helpful. Good programming practices …

  10. Testing the performance of a C++ app - Stack Overflow

    Sep 15, 2016 · I'm trying to find a way to test how long it takes a block of C++ code to run. I'm using it to compare the code with different algorithms and under different languages, so ideally …