STL函數(shù)對象的定義及其在STL中的應(yīng)用是怎樣的,針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
大武口網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)建站,大武口網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為大武口上千多家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站制作要多少錢,請找那個售后服務(wù)好的大武口做網(wǎng)站的公司定做!
一、函數(shù)對象定義與實例
1.1 定義
函數(shù)對象:一個重載了運算符()的個對象,可以像一個函數(shù)一樣使用。
1.2 實例
#includeusing namespace std; class Add { public: int operator() (int val1, int val2) { return val1 + val2; } }; int main(int argc, char *argv[]) { Add add;cout< 二、函數(shù)對象在STL中的應(yīng)用
2.1 統(tǒng)計vector中大于0的元素的個數(shù)
一個自定義函數(shù)pred。
count_if可以統(tǒng)計容器中滿足特定條件的元素的個數(shù)。
#include#include #include using namespace std; bool pred(int val) { return val > 0; } int main(int argc, char *argv[]) { vector vec; vec.push_back(-2); vec.push_back(0); vec.push_back(8); vec.push_back(12); vec.push_back(-4); cout< 如果想統(tǒng)計vector中大于10、大于20的元素的個數(shù),需要重新寫函數(shù)pred。
如果有一種辦法,可以使用count_if(vec.begin(), vec.end(), pred(n))直接統(tǒng)計出vector中元素大于n的元素個個數(shù),多好啊。
2.2 統(tǒng)計vector中大于n的元素的個數(shù)
一個自定義函數(shù)對象。
count_if。
#include#include #include using namespace std; class pred { public: pred(int val) : m_val(val) { } public: bool operator() (int val) { return val > m_val; } private: int m_val; }; int main(int argc, char *argv[]) { vector vec; vec.push_back(-2); vec.push_back(0); vec.push_back(8); vec.push_back(12); vec.push_back(-4); cout< 2.3 利用模板技術(shù),可以應(yīng)用到各種類型的容器上
函數(shù)對象
模板
count_if
#include#include #include using namespace std; template class pred { public: pred(T val) : m_val(val) { } public: bool operator() (T val) { return val > m_val; } private: T m_val; }; int main(int argc, char *argv[]) { // vector vec; vec.push_back(-2); vec.push_back(0); vec.push_back(8); vec.push_back(12); vec.push_back(-4); cout< (0))< vChar; vChar.push_back('a'); vChar.push_back('c'); vChar.push_back('e'); cout< ('c'))< 關(guān)于STL函數(shù)對象的定義及其在STL中的應(yīng)用是怎樣的問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。
網(wǎng)頁題目:STL函數(shù)對象的定義及其在STL中的應(yīng)用是怎樣的
文章起源:http://weahome.cn/article/poecgo.html