Hacker News new | ask | show | jobs
by wglb 4975 days ago
For the same code, C++ is generally measurably slower. One reason is how exceptions, which are not optional, are handled at run time.

Having written some seriously high-throughput low-latency code in C++, you have to turn on bunches of compile flags (e.g., ignore exceptions) to get the best out of it.