- 论坛徽章:
- 0
|
本帖最后由 cjog 于 2010-02-25 12:13 编辑
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
class ss
{
int i;
public:
ss(int j)
{
i=j;
cout<<"ss(int) "<<this<<endl;
}
ss(const ss& arg)
{
i=arg.i;
cout<<"ss(const ss& arg) "<<this<<endl;
}
~ss() {
cout<<"~ss() "<<this<<endl;
}
ss& operator=(const ss&arg)
{
i=arg.i;
cout<<"ss& operator=(const ss&arg) "<<this<<"="<<&arg<<endl;
}
void peek() {
cout<<i<<endl;
}
};
template<class T> void see(T& x) { x.peek(); }
main()
{
ss x(1),y(2);
swap(x,y); //调用泛型算法里的swap
x.peek();
y.peek();
vector<ss>vss1,vss2;
vss1.reserve(7);
vss2.reserve(4);
for(int i = 0; i < 7; i++)
vss1.push_back(i);
for(int i = 7; i < 11; i++)
vss2.push_back(i);
cout<<"before member swap"<<endl;
cout<<"vss1"<<endl;
for_each(vss1.begin(), vss1.end(), see<ss>);
cout<<endl<<"vss2"<<endl;
for_each(vss2.begin(), vss2.end(), see<ss>);
cout<<"member swaping...."<<endl;
vss1.swap(vss2); //调用vector的member swap。两个vector中的element的constructor,copy constructor,operator=及destructor一个都没调用.
cout<<"after member swap"<<endl;
cout<<"vss1"<<endl;
for_each(vss1.begin(), vss1.end(), see<ss>);
cout<<endl<<"vss2"<<endl;
for_each(vss2.begin(), vss2.end(), see<ss>);
cout<<"non-member swaping...."<<endl;
swap(vss1,vss2);//两个vector中的element的构造函数,copy constructor,operator=及析构函数一个都没调用.因为此处还是调用的vector的member swap
cout<<"after non-member swap"<<endl;
cout<<endl<<"vss1"<<endl;
for_each(vss1.begin(), vss1.end(), see<ss>);
cout<<endl<<"vss2"<<endl;
for_each(vss2.begin(), vss2.end(), see<ss>);
}
请注意红色那行,这行我觉得应该调用泛型算法里面的swap,但实际上还是调用的vector的成员函数swap,在stl_vector.h中添加打印信息可印证之。实在想不通这是什么道理,我觉得那行应该调用泛型算法里面的swap才对,不知为何还是调用vector的成员函数swap。急盼高手指教,O(∩_∩)O谢谢 |
|