有人曾暗示不建议在头文件中执行此操作:
using namespace std;
为什么不建议?
它是否会导致像这样的链接器错误:(为了方便而行换行)
error LNK2005: "public: __thiscall std::basic_string<char,struct
std::char_traits<char>,class std::allocator<char> >::
~basic_string<char,struct std::char_traits<char>,class std::allocator<char> >
(void)" (??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ)
already defined in tools.lib(Exception.obj)
答案 0 :(得分:9)
因为它会强制任何使用您的头文件的人将std
命名空间带入全局范围。如果它们的类名与标准库类之一具有相同的名称,则可能会出现问题。
答案 1 :(得分:1)
如果文件包含在别处,编译单元将隐含地获取using指令。当名称重叠时,这可能会导致混淆错误。