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

前端 未结 16 1972
刺人心
刺人心 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:26

    Since I learned about RAII (one of the worst acronyms ever) and smart pointer, memory and resource leaks have almost completely disappeared.

提交回复
热议问题