免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 6560 | 回复: 10
打印 上一主题 下一主题

熟悉stl的请进,关于容器的swap [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-02-25 11:30 |只看该作者 |倒序浏览
本帖最后由 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谢谢

论坛徽章:
2
青铜圣斗士
日期:2015-11-26 06:15:59数据库技术版块每日发帖之星
日期:2016-07-24 06:20:00
2 [报告]
发表于 2010-02-25 16:23 |只看该作者
显然成员要高效一些, 只需要交换vector内部的handle, 不需要构造一个临时的vector。

论坛徽章:
0
3 [报告]
发表于 2010-02-25 17:11 |只看该作者
是的,成员swap的注释中也说了,交换可以在常数时间内完成
我搞不明白的是,从那行红色代码的调用方式来看,应该执行泛型算法的swap啊,为什么还是执行的成员swap呢。

ps:gcc 4.1.2上编译的

论坛徽章:
0
4 [报告]
发表于 2010-02-25 17:29 |只看该作者
本帖最后由 okocha-jay 于 2010-02-25 17:31 编辑

我觉得是在vector的声明中,或者是在std空间里有一个针对vector的swap函数特化版本(当然,它高效),
接受两个vector引用类型的参数;
所以会调用这个swap

知道KOENIG查找规则吗?google一下吧

论坛徽章:
2
青铜圣斗士
日期:2015-11-26 06:15:59数据库技术版块每日发帖之星
日期:2016-07-24 06:20:00
5 [报告]
发表于 2010-02-25 17:37 |只看该作者
回复 3# cjog

呃……  我刚才没弄明白你的问题。 现在明白了, 解答就是楼上的。
不过……  那个好像应该叫重载……

论坛徽章:
1
2017金鸡报晓
日期:2017-02-08 10:33:21
6 [报告]
发表于 2010-02-25 18:13 |只看该作者
应该是特化

论坛徽章:
2
青铜圣斗士
日期:2015-11-26 06:15:59数据库技术版块每日发帖之星
日期:2016-07-24 06:20:00
7 [报告]
发表于 2010-02-25 18:41 |只看该作者
看来误会的人不少。
C++03中, 函数是不能partial specification的, 只能explicit specification或者overloading。
explicit specification的结果已经不是一个模板了, 无法应用于各种vector。

  1. template<typename T>
  2. void swap(T& v1, T& v2) // #1
  3. {
  4.     T t = v1;
  5.     v1 = v2;
  6.     v2 = t;
  7. }

  8. template<typename T,class A>
  9. void swap(vector<T,A>& v1, vector<T,A>& v2) // #2
  10. {
  11.       v1.swap(v2);
  12. }
复制代码
2和1之间是相互重载关系, 而不是特化。

论坛徽章:
0
8 [报告]
发表于 2010-02-25 19:14 |只看该作者
看来误会的人不少。
C++03中, 函数是不能partial specification的, 只能explicit specification或者over ...
OwnWaterloo 发表于 2010-02-25 18:41



    恩,两个主模板,相互重载。
不是全特化,毕竟vector还需要有泛型参数。

论坛徽章:
0
9 [报告]
发表于 2010-02-26 22:25 |只看该作者
谢谢各位,还是没完全懂,研究中。。。。

论坛徽章:
0
10 [报告]
发表于 2010-02-26 23:09 |只看该作者
把/usr/include/c++/4.1.2下的文件搜了个遍,都没有找到对以vector为参的swap进行特化或重载的代码。。。。迷茫
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP