首页 文章详情

C++核心准则SF.7:不要在头文件中的全局作用域中使用using namespace指令

面向对象思考 | 574 2020-10-11 10:00 0 0 0
UniSMS (合一短信)

SF.7: Don't write using namespace at global scope in a header file

SF.7:不要在头文件中的全局作用域中使用using namespace指令


Reason(原因)

Doing so takes away an #includer's ability to effectively disambiguate and to use alternatives. It also makes #included headers order-dependent as they might have different meaning when included in different orders.

这么做去除了include操作有效消除歧义和使用其他选项的能力。另外,文件以不同次序被包含时的含义可能会随之不同,导致产生包含顺序依赖性。


Example(原因)

// bad.h
#include
using namespace std; // bad

// user.cpp
#include "bad.h"

bool copy(/*... some parameters ...*/); // some function that happens to be named copy

int main()
{
copy(/*...*/); // now overloads local ::copy and std::copy, could be ambiguous
}
Note(注意)

An exception is using namespace std::literals;. This is necessary to use string literals in header files and given the rules - users are required to name their own UDLs operator""_x - they will not collide with the standard library.

有一个例外是using namspace std::literals;。如果需要在头文件中使用字符串字面值而且满足这样的条件:用户被要求为他们自己的UDL运算符“”_x命名而且他们不会和标准库相冲突,使用using namespace std::literals是就可以认为是必要的。


Enforcement(实施建议)

Flag using namespace at global scope in a header file.

标记在头文件的全局作用域中使用using namspace指令的情况。


原文链接

https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#sf7-dont-write-using-namespace-at-global-scope-in-a-header-file


新书介绍

《实战Python设计模式》是作者最近出版的新书,拜托多多关注!

本书利用Python 的标准GUI 工具包tkinter,通过可执行的示例对23 个设计模式逐个进行说明。这样一方面可以使读者了解真实的软件开发工作中每个设计模式的运用场景和想要解决的问题;另一方面通过对这些问题的解决过程进行说明,让读者明白在编写代码时如何判断使用设计模式的利弊,并合理运用设计模式。

对设计模式感兴趣而且希望随学随用的读者通过本书可以快速跨越从理解到运用的门槛;希望学习Python GUI 编程的读者可以将本书中的示例作为设计和开发的参考;使用Python 语言进行图像分析、数据处理工作的读者可以直接以本书中的示例为基础,迅速构建自己的系统架构。




觉得本文有帮助?请分享给更多人。

关注微信公众号【面向对象思考】轻松学习每一天!

面向对象开发,面向对象思考!



good-icon 0
favorite-icon 0
收藏
回复数量: 0
    暂无评论~~
    Ctrl+Enter