Organize includes

后端 未结 6 1135
臣服心动
臣服心动 2020-12-31 00:14
  • Is there some preferred way to organize ones include directives?
  • Is it better to include the files you need in the .cpp file instead of the
6条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-31 01:02

    It might be important to notice that the order of classes in Translation Unit need to be correct or some c++ features are just disabled and results in a compile-time error.

    Edit: Adding examples:

    class A { };
    class B { A a; }; // order of classes need to be correct
    

提交回复
热议问题