What order do I include header files in?

前端 未结 5 1412
挽巷
挽巷 2021-02-15 11:26

I\'m new to programming and the topic of header files is sort of bogging me down after I started using a lot of them. In addition to that I\'m trying to use precompiled headers.

5条回答
  •  一整个雨季
    2021-02-15 12:24

    Depends on dependencies. Unlike C# and other similar languages, C++ does things in the order it is written, so there may be an issue. If you do have a problem with the order then it will not compile.

提交回复
热议问题