时间:2021-05-20
本文实例讲述了C++在成员函数中使用STL的find_if函数的方法。分享给大家供大家参考。具体方法分析如下:
一般来说,STL的find_if函数功能很强大,可以使用输入的函数替代等于操作符执行查找功能(这个网上有很多资料,我这里就不多说了)。
比如查找一个数组中的奇数,可以用如下代码完成(具体参考这里:http:///reference/algorithm/find_if/):
#include <iostream>#include <algorithm>#include <vector>using namespace std;bool IsOdd (int i) { return ((i%2)==1);}int main () { vector<int> myvector; vector<int>::iterator it; myvector.push_back(10); myvector.push_back(25); myvector.push_back(40); myvector.push_back(55); it = find_if (myvector.begin(), myvector.end(), IsOdd); cout << "The first odd value is " << *it << endl; return 0;}运行结果:
The first odd value is 25如果把上述代码加入到类里面,写成类的成员函数,又是什么效果呢?
比如如下类代码:
#include <iostream>#include <algorithm>#include <vector>using namespace std;class CTest{public: bool IsOdd (int i) { return ((i%2)==1); } int test () { vector<int> myvector; vector<int>::iterator it; myvector.push_back(10); myvector.push_back(25); myvector.push_back(40); myvector.push_back(55); it = find_if (myvector.begin(), myvector.end(), IsOdd); cout << "The first odd value is " << *it << endl; return 0; }};int main(){ CTest t1; t1.test(); return 0;}会出现类似下面的错误:
error C3867: 'CTest::IsOdd': function call missing argument list; use '&CTest::IsOdd' to create a pointer to member
今天我就遇到了这个问题,这里把解决方案贴出来,仅供参考:
it = find_if (myvector.begin(), myvector.end(), IsOdd);
改为:
it = find_if(myvector.begin(), myvector.end(),std::bind1st(std::mem_fun(&CTest::IsOdd),this));
用bind1st函数和mem_fun函数加上this指针搞定的。
完整实例代码点击此处本站下载。
希望本文所述对大家的C++程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
C++中const对象与const成员函数的实例详解const对象只能调用const成员函数:#includeusingnamespacestd;classA{
C++中静态成员函数访问非静态成员的实例实现代码:#include/*静态成员函数只能访问静态数据成员、静态成员函数和类以外的函数和数据,不能访问非静态数据成员
本文实例分析了C++中回调函数(CallBack)的用法。分享给大家供大家参考。具体分析如下:如果试图直接使用C++的成员函数作为回调函数将发生错误,甚至编译就
常见的不不能声明为虚函数的有:普通函数(非成员函数);静态成员函数;内联成员函数;构造函数;友元函数。1.为什么C++不支持普通函数为虚函数?普通函数(非成员函
介绍在C++中通过一个全局函数来绑定到对象的成员函数是很有用的,这个特性也存在于其他语言中,例如C#的委派。在C++中相当于成员函数指针,但是并没有提供相应的特