What should go into an .h file?

后端 未结 12 986
伪装坚强ぢ
伪装坚强ぢ 2020-11-22 15:26

When dividing your code up into multiple files just what exactly should go into an .h file and what should go into a .cpp file?

12条回答
  •  再見小時候
    2020-11-22 15:44

    Mainly header file contain class skeleton or declaration (does not change frequently)

    and cpp file contains class implementation (changes frequently).

提交回复
热议问题