您好,登錄后才能下訂單哦!
本篇內容主要講解“C++ STL bind1st bind2nd bind 的使用方法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“C++ STL bind1st bind2nd bind 的使用方法”吧!
bind1st()
和 bind2nd()
,在 C++11 里已經 deprecated 了,建議使用新標準的 bind()
。
下面先說明bind1st()
和 bind2nd()
的用法,然后在說明bind()
的用法。
#include <functional>
bind1st()
和bind2nd()
都是把二元函數轉化為一元函數,方法是綁定其中一個參數。
bind1st()
是綁定第一個參數。
bind2nd()
是綁定第二個參數。
#include <iostream>#include <algorithm> #include <functional> using namespace std; int main() { int numbers[] = { 10,20,30,40,50,10 }; int cx; cx = count_if(numbers, numbers + 6, bind2nd(less<int>(), 40)); cout << "There are " << cx << " elements that are less than 40.\n"; cx = count_if(numbers, numbers + 6, bind1st(less<int>(), 40)); cout << "There are " << cx << " elements that are not less than 40.\n"; system("pause"); return 0; }
There are 4 elements that are less than 40.There are 1 elements that are not less than 40.
分析
less()
是一個二元函數,less(a, b)
表示判斷a<b
是否成立。
所以bind2nd(less<int>(), 40)
相當于x<40
是否成立,用于判定那些小于40的元素。
bind1st(less<int>(), 40)
相當于40<x
是否成立,用于判定那些大于40的元素。
bind1st()
和 bind2nd()
,在 C++11 里已經 deprecated 了.bind()
可以替代他們,且用法更靈活更方便。
上面的例子可以寫成下面的形式:
#include <iostream>#include <algorithm> #include <functional> using namespace std; int main() { int numbers[] = { 10,20,30,40,50,10 }; int cx; cx = count_if(numbers, numbers + 6, bind(less<int>(), std::placeholders::_1, 40)); cout << "There are " << cx << " elements that are less than 40.\n"; cx = count_if(numbers, numbers + 6, bind(less<int>(), 40, std::placeholders::_1)); cout << "There are " << cx << " elements that are not less than 40.\n"; system("pause"); return 0; }
std::placeholders::_1
是占位符,標定這個是要傳入的參數。
所以bind()
不僅可以用于二元函數,還可以用于多元函數,可以綁定多元函數中的多個參數,不想綁定的參數使用占位符表示。
此用法更靈活,更直觀,更便捷。
到此,相信大家對“C++ STL bind1st bind2nd bind 的使用方法”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。