这是一个奇怪的地方,我不知道是使用 C++ 标准,还是使用我的编译器(Ubuntu 12.04 上的 G++ 版本 4.6.3,这是 Ubuntu 的最新长期支持版本)还是使用我,谁不明白;-)
有问题的代码如下所示:
#include <algorithm> // for std::swap
void f(void)
{
class MyClass { };
MyClass aa, bb;
std::swap(aa, bb); // doesn't compile
}
尝试使用 G++ 编译时,编译器会产生以下错误消息:
test.cpp: In function ‘void f()’:
test.cpp:6:21: error: no matching function for call to ‘swap(f()::MyClass&, f()::MyClass&)’
test.cpp:6:21: note: candidates are:
/usr/include/c++/4.6/bits/move.h:122:5: note: template<class _Tp> void std::swap(_Tp&, _Tp&)
/usr/include/c++/4.6/bits/move.h:136:5: note: template<class _Tp, long unsigned int _Nm> void std::swap(_Tp (&)[_Nm], _Tp (&)[_Nm])
令人惊讶的结果是,只需将类定义移出函数即可使代码编译良好:
#include <algorithm> // for std::swap
class MyClass { };
void f(void)
{
MyClass aa, bb;
std::swap(aa, bb); // compiles fine!
}
那么,std::swap() 不应该适用于函数私有的类吗?或者这是 G++ 的错误,也许是我正在使用的 G++ 的特定版本?
更令人费解的是,尽管 MyListClass 也是私有的(但扩展了一个“官方”类,可能存在一个特定的 swap() 实现),但以下内容再次起作用:
#include <algorithm> // for std::swap
#include <list> // for std::list
void g(void)
{
class MyListClass : public std::list<int> { };
MyListClass aa, bb;
std::swap(aa, bb); // compiles fine!
}
但是只是从对象变为指针,编译又失败了:
#include <algorithm> // for std::swap
#include <list> // for std::list
void g(void)
{
class MyListClass : public std::list<int> { };
MyListClass aa, bb;
MyListClass* aap = &aa;
MyListClass* bbp = &bb;
std::swap(aap, bbp); // doesn't compile!
}
当然,在我的实际应用中,类更复杂。我尽可能简化了代码以仍然重现问题。