91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++ STL bind1st bind2nd bind 的使用方法

發布時間:2021-07-19 10:48:23 來源:億速云 閱讀:132 作者:chen 欄目:互聯網科技

本篇內容主要講解“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的元素。

bind()

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 的使用方法”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

镇远县| 勃利县| 定南县| 元阳县| 天全县| 松滋市| 通化市| 包头市| 钦州市| 客服| 四川省| 邹城市| 永顺县| 锡林郭勒盟| 自贡市| 错那县| 昌黎县| 明水县| 广饶县| 新丰县| 浦北县| 五华县| 内乡县| 台前县| 烟台市| 罗源县| 通化市| 明星| 牟定县| 沐川县| 嘉祥县| 巴彦淖尔市| 九龙城区| 喀喇| 丹江口市| 汤原县| 额敏县| 光山县| 张家川| 吐鲁番市| 永兴县|