作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
这个伪代码是从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/
使用登录后,我想吐出用户名。 但是,当我尝试单击登录按钮时, 它给了我力量。 我看着logcat,但是什么也没显示。 这种编码是在说。 它将根据我在登录屏幕中输入的名称来烘烤用户名。 不会有任何密码。
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎是题外话,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或include a min
我是一名优秀的程序员,十分优秀!