gpt4 book ai didi

c++ - 作者在 GotW #53 中想表达什么?

转载 作者:太空狗 更新时间:2023-10-29 23:05:53 28 4
gpt4 key购买 nike

这个伪代码是从GotW #53获得的在副标题“一个不太好的长期解决方案”下。几个小时以来,我一直在努力理解作者在说什么,特别是与下面以“//error: potential ...”开头的评论有关,但无济于事。我真的很感激这方面的帮助。

    //  Example 2c: Bad long-term solution (or, Why to
// avoid using declarations in
// headers, even not at file scope)
//
//--- file x.h ---
//
#include "y.h" // declares MyProject::Y and adds
// using declarations/directives
// in namespace MyProject
#include <deque>
#include <iosfwd>
namespace MyProject
{
using std::deque;
using std::ostream;
// or, "using namespace std;"
ostream& operator<<( ostream&, const Y& );
int f( const deque<int>& );
}
//--- file x.cpp ---
//
#include "x.h"
#include "z.h" // declares MyProject::Z and adds
// using declarations/directives
// in namespace MyProject
// error: potential future name ambiguities in
// z.h's declarations, depending on what
// using declarations exist in headers
// that happen to be #included before z.h
// in any given module (in this case,
// x.h or y.h may cause potential changes
// in meaning)
#include <ostream>
namespace MyProject
{
ostream& operator<<( ostream& o, const Y& y )
{
// ... uses Z in the implementation ...
return o;
}
int f( const deque<int>& d )
{
// ...
}
}

最佳答案

他的意思是不要在头文件中使用 using 指令。例如:假设我们有 2 个文件 x.h 和 z.h,这些声明:

// x.h
namespace MyProject
{
using std::deque;
using std::ostream;
....
};

// z.h
namespace MyProject
{
using mystd::deque;
using mystd::ostream;
....
};

问题是:在您的示例中将调用哪个 ostream 对象?

// x.cpp
#include "x.h"
#include "z.h"
#include <ostream>
namespace MyProject
{
ostream& operator<<( ostream& o, const Y& y )
{
// ... uses Z in the implementation ...
return o;
}
int f( const deque<int>& d )
{
// ...
}
}

你想调用x.h定义,但是由于包含的顺序,它会调用z.h包含定义

关于c++ - 作者在 GotW #53 中想表达什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17556319/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com