代码如下:
#include <vector>
int main()
{
vector<int> v1(5,1);
v1.swap(vector<int> ()); //try to swap v1 with a temporary vector object
}
上面的代码无法编译,错误:
error: no matching function for call to ‘std::vector<int, std::allocator<int> >::swap(std::vector<int, std::allocator<int> >)’
但是,如果我将代码更改为这样的代码,它可以编译:
int main()
{
vector<int> v1(5,1);
vector<int> ().swap(v1);
}
为什么?