Why and how should I use namespaces in C++?(为什么以及如何在 C++ 中使用命名空间?)
问题描述
我以前从未在我的代码中使用过命名空间.(除了使用 STL 函数)
I have never used namespaces for my code before. (Other than for using STL functions)
- 除了避免名称冲突,还有其他理由使用命名空间吗?
- 我必须将声明和定义都包含在命名空间范围内吗?
推荐答案
这里是一个很好的理由(除了你所说的显而易见的).
Here is a good reason (apart from the obvious stated by you).
由于命名空间可以是不连续的并且分布在翻译单元中,它们也可以用于将接口与实现细节分开.
Since namespace can be discontiguous and spread across translation units, they can also be used to separate interface from implementation details.
命名空间中的名称定义可以在同一个命名空间中提供,也可以在任何封闭的命名空间中提供(具有完全限定的名称).
Definitions of names in a namespace can be provided either in the same namespace or in any of the enclosing namespaces (with fully qualified names).
这篇关于为什么以及如何在 C++ 中使用命名空间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么以及如何在 C++ 中使用命名空间?
基础教程推荐
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- CString 到 char* 2021-01-01
