What are some C++ related idioms, misconceptions, and gotchas that you've learnt from experience?

前端 未结 16 2150
刺人心
刺人心 2021-01-29 19:48

What are some C++ related idioms, misconceptions, and gotchas that you\'ve learnt from experience?

An example:

class A
{
  public: 
  char s[1024];
  cha         


        
16条回答
  •  遇见更好的自我
    2021-01-29 20:19

    Use boost::spirit::hold_any (link) instead of boost::any for performance code (while holding a large number of small objects). I saw a large difference in their performances.

提交回复
热议问题