分享
 
 
 

2005年8月11日 的 Boost 1.33,bind 库 reference 改 value 的问题

王朝other·作者佚名  2006-01-10
窄屏简体版  字體: |||超大  

问题的起因很简单,我实验一个简单的程序不过。这个程序的本意是想检验一下 boost.bind 在 1.33 中新加入的比较运算符,我以为这一点也不难,然而程序的运行结果大出我的意料:

#include <iostream>

#include <algorithm>

#include <map>

#include <string>

//#include <boost/lambda/lambda.hpp>

//#include <boost/lambda/bind.hpp>

#include <boost/bind.hpp>

//using namespace boost::lambda;

using namespace boost;

class Person

{

public:

Person(){}

Person(const std::string& name) : name_(name){}

std::string& Name()

{ return name_; }

private:

std::string name_;

};

int main()

{

std::map<int, Person> persons;

persons[123] = Person("Amy");

persons[234] = Person("Ralph");

persons[345] = Person("Simon");

persons[456] = Person("Maggie");

std::cout << "Ralph's Id is: " <<

std::find_if( persons.begin(), persons.end(),

bind(&Person::Name,

bind(&std::map<int, Person>::value_type::second, _1)) ==

"Ralph" )->first;

}

它的输出竟然是

Ralph's Id is: 0

不过,如果把程序中的 bind 库换成 boost.lambda (uncomment 掉前面的 include 和 using 即可),输出就是

Ralph's Id is: 234

这才是我想要的,我在新闻组提了这个问题,Peter Dimov 给我的答复可能是对我们每个使用 boost.bind 的人的忠告:

I get an error C2439 on this example; the problem is that the inner

bind returns a temporary Person by value, but Person::Name returns a

reference to its member std::string.

bind on a data member was changed to return a value and not a reference

because of similar reference to temporary issues, but it seems clear

now that this change has caused more problems than it solved.

I'll try to fix it for the next release (1.33.1 if there is one, or

1.34), but in the meantime you need to use

bind<Person&>(&std::map<int, Person>::value_type::second, _1)

to get the old reference-returning behavior back.

区别在于 bind<Person&> 这一部分,现在我们将不得不显式的指出我们绑定到一个 data member 的目的是取得它的 reference 而不是一份拷贝。在修改这个问题之前,一定要小心处理这个问题,否则就会跟我一样目瞪口呆。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有