bind2st for_each和transform
一天STL论坛上有个伴侣问关于bind2st利用的问题,开始觉得很简朴:
void print(int& a,const int b)
{
a+=b;
}
int main()
{
list<int> my_list;
.........
for_each(my_list.begin(),my_list.end(), bind2nd(print,3) );
}
目标是依次轮回,每个节点加3
想通过bind2nd使函数的第二个值绑定为3
但是通过不了,这是错在哪
假如要到达目标的话,应该怎么改呢??
厥后一调试,发明不是那么容易。你能发明问题在哪儿吗?
厥后看了辅佐文档才办理,看看我的复原:
for_each 是需要利用functor , bind2st 的工具也是functor 而不是函数。
假如需要利用bind2st,那么你需要从binary_function担任.
for_each不会让你修改元素, 因此你的要求是达不到的。
在STL编程手册中就有说明:
for_each的 “UnaryFunction does not apply any non-constant operation through its argument”
假如要到达要求,你可以利用transform.
以下代码就是一个例子:
struct printx: public binary_function<int, int, int>
{
int operator()(int a, int b)const
{
cout<<a+b<<endl;
return a+b;
}
};
int main()
{
vector<int> my;
my.push_back(0);
my.push_back(1);
my.push_back(2);
copy(my.begin(), my.end(), ostream_iterator<int>(cout, " "));
cout<<"\n-----"<<endl;
for_each(my.begin(),my.end(), bind2nd(printx() , 3) );
cout<<"\n-----"<<endl;
copy(my.begin(), my.end(), ostream_iterator<int>(cout, " "));
cout<<"\n-----"<<endl;
transform(my.begin(),my.end(),my.begin(), bind2nd(printx() , 3) );
cout<<"\n-----"<<endl;
copy(my.begin(), my.end(), ostream_iterator<int>(cout, " "));
return 0;
}
看来不是那么容易,STL在利用之初,确实不那么容易,其编程思想很不错,可是假如没有习惯这种气势气魄,很是容易呈现问题,加上编译错误提示信息不友好,也很难纠正错误。因此,发起初学者只管不要去利用一些贫苦的操纵。多利用容器自带的函数,一步一步来。