C++在成員函數中應用STL的find_if函數實例。本站提示廣大學習愛好者:(C++在成員函數中應用STL的find_if函數實例)文章只能為提供參考,不一定能成為您想要的結果。以下是C++在成員函數中應用STL的find_if函數實例正文
本文實例講述了C++在成員函數中應用STL的find_if函數的辦法。分享給年夜家供年夜家參考。詳細辦法剖析以下:
普通來講,STL的find_if函數功效很壯大,可使用輸出的函數替換等於操作符履行查找功效(這個網上有許多材料,我這裡就不多說了)。
好比查找一個數組中的奇數,可以用以下代碼完成(詳細參考這裡:http://www.cplusplus.com/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++法式設計有所贊助。