你更喜欢显式命名空间还是 C++ 中的“使用"? [英] Do you prefer explicit namespaces or 'using' in C++?

查看:23
本文介绍了你更喜欢显式命名空间还是 C++ 中的“使用"?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在使用 C++ 命名空间时,您是否更喜欢显式命名它们,如下所示:

When using C++ namespaces, do you prefer to explicitly name them, like this:

std::cout << "Hello, world!
";

或者你更喜欢使用命名空间:

using namespace std;
cout << "Hello, world!
";

如果你更喜欢后者,你是在文件范围还是函数范围声明你的使用?

And if if you prefer the latter, do you declare your usings at file or function scope?

就我个人而言,我更喜欢明确地命名它们——它的类型更多,但是当使用混合命名空间(例如 stdboost)时,我发现它更具可读性.

Personally I prefer to explicitly name them - it's more typing but when using a mixture of namespaces (e.g. std and boost) I find it more readable.

推荐答案

我总是使用 using namespace for std &促进.其他一切我都倾向于使用显式命名空间,除非它使用得太多以至于会弄乱代码.

I always use using namespace for std & boost. Everything else I tend to use an explicit namespace unless it is used so much that it would clutter up the code.

在标头中,我从不使用 using namespace 以避免污染#include 源的全局命名空间.

In headers, I never use using namespace to avoid polluting the global namespace of the #including source.

这篇关于你更喜欢显式命名空间还是 C++ 中的“使用"?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆