What is the difference between header file and namespace?

前端 未结 6 875
臣服心动
臣服心动 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条回答
  •  别那么骄傲
    2020-12-29 10:33

    In common man langauge, Header file would be unique file on file system and namespace would be covering one or more files.

    i.e. HeaderFile is physical thing and namespace is logical thing.

    learn more about them here http://en.wikipedia.org/wiki/Namespace and http://en.wikipedia.org/wiki/Header_file

提交回复
热议问题