What is the difference between a .cpp file and a .h file?

后端 未结 8 2072
余生分开走
余生分开走 2020-12-02 11:52

Because I\'ve made .cpp files then transfered them into .h files, the only difference I can find is that you can\'t #include .cpp files. Is there any difference that I am m

8条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-02 12:34

    A good rule of thumb is ".h files should have declarations [potentially] used by multiple source files, but no code that gets run."

提交回复
热议问题