What is the difference between header file and namespace?

前端 未结 6 896
臣服心动
臣服心动 2020-12-29 10:09

I want to know the exact difference between Header file (as in MyHeader.hpp) and a namespace in c++?

6条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-29 10:25

    Namespace is a new concept of 'ansi c++' to identify global identifiers which are to be frequently used in your programme.

    Header file is a source file that supports your program by reusing reliable and tested code hence saving time and effort!!!!

提交回复
热议问题