色哟哟视频在线观看-色哟哟视频在线-色哟哟欧美15最新在线-色哟哟免费在线观看-国产l精品国产亚洲区在线观看-国产l精品国产亚洲区久久

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會員中心
創(chuàng)作中心

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

3天內(nèi)不再提示

std::function簡介及模板類聲明

5jek_harmonyos ? 來源:編程學習總站 ? 作者:寫代碼的牛頓 ? 2021-07-28 15:30 ? 次閱讀

01

std::function簡介

std::function是一個函數(shù)包裝器,該函數(shù)包裝器模板能包裝任何類型的可調用實體,如普通函數(shù),函數(shù)對象,lamda表達式等。包裝器可拷貝,移動等,并且包裝器類型僅僅依賴于調用特征,而不依賴于可調用元素自身的類型。

std::function是C++11的新特性,包含在頭文件《functional》中。一個std::function類型對象實例可以包裝下列這幾種可調用實體:函數(shù)、函數(shù)指針、成員函數(shù)、靜態(tài)函數(shù)、lamda表達式和函數(shù)對象。

std::function對象實例可被拷貝和移動,并且可以使用指定的調用特征來直接調用目標元素。當std::function對象實例未包含任何實際可調用實體時,調用該std::function對象實例將拋出std::bad_function_call異常。02

std::function實戰(zhàn)

std::function模板類聲明

template《class _Rp, class 。。._ArgTypes》 class _LIBCPP_TEMPLATE_VIS function《_Rp(_ArgTypes.。。)》 : public __function::__maybe_derive_from_unary_function《_Rp(_ArgTypes.。。)》, public __function::__maybe_derive_from_binary_function《_Rp(_ArgTypes.。。)》 { 。。. }std::function模板類成員函數(shù)聲明

typedef _Rp result_type; // construct/copy/destroy: _LIBCPP_INLINE_VISIBILITY function() _NOEXCEPT { } _LIBCPP_INLINE_VISIBILITY function(nullptr_t) _NOEXCEPT {} function(const function&); function(function&&) _NOEXCEPT; template《class _Fp, class = _EnableIfCallable《_Fp》》 function(_Fp); #if _LIBCPP_STD_VER 《= 14 template《class _Alloc》 _LIBCPP_INLINE_VISIBILITY function(allocator_arg_t, const _Alloc&) _NOEXCEPT {} template《class _Alloc》 _LIBCPP_INLINE_VISIBILITY function(allocator_arg_t, const _Alloc&, nullptr_t) _NOEXCEPT {} template《class _Alloc》 function(allocator_arg_t, const _Alloc&, const function&); template《class _Alloc》 function(allocator_arg_t, const _Alloc&, function&&); template《class _Fp, class _Alloc, class = _EnableIfCallable《_Fp》》 function(allocator_arg_t, const _Alloc& __a, _Fp __f); #endif function& operator=(const function&); function& operator=(function&&) _NOEXCEPT; function& operator=(nullptr_t) _NOEXCEPT; template《class _Fp, class = _EnableIfCallable《_Fp》》 function& operator=(_Fp&&); ~function(); // function modifiers: void swap(function&) _NOEXCEPT; #if _LIBCPP_STD_VER 《= 14 template《class _Fp, class _Alloc》 _LIBCPP_INLINE_VISIBILITY void assign(_Fp&& __f, const _Alloc& __a) {function(allocator_arg, __a, _VSTD::forward《_Fp》(__f)).swap(*this);} #endif // function capacity: _LIBCPP_INLINE_VISIBILITY _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT { return static_cast《bool》(__f_); } // deleted overloads close possible hole in the type system template《class _R2, class.。。 _ArgTypes2》 bool operator==(const function《_R2(_ArgTypes2.。。)》&) const = delete; template《class _R2, class.。。 _ArgTypes2》 bool operator!=(const function《_R2(_ArgTypes2.。。)》&) const = delete; public: // function invocation: _Rp operator()(_ArgTypes.。。) const; #ifndef _LIBCPP_NO_RTTI // function target access: const std::type_info& target_type() const _NOEXCEPT; template 《typename _Tp》 _Tp* target() _NOEXCEPT; template 《typename _Tp》 const _Tp* target() const _NOEXCEPT; #endif // _LIBCPP_NO_RTTI從成員函數(shù)里我們知道std::function對象實例不允許進行==和!=比較操作,std::function模板類實例最終調用成員函數(shù)_Rp operator()(_ArgTypes.。。) const進而調用包裝的調用實體。1、std::function包裝函數(shù)指針定義一個std::function《int(int)》對象實例

std::function《int(int)》 callback;std::function對象實例包裝函數(shù)指針

int (*fun_ptr)(int); int fun1(int a){ return a; } int main(int argc, char *argv[]){ std::cout 《《 “Hello world” 《《 std::endl; fun_ptr = fun1; //函數(shù)指針fun_ptr指向fun1函數(shù) callback = fun_ptr; //std::function對象包裝函數(shù)指針 std::cout 《《 callback(10) 《《 std::endl; //std::function對象實例調用包裝的實體 return 0; }2、std::function包裝函數(shù)

int fun1(int a){ return a; } int main(int argc, char *argv[]){ std::cout 《《 “Hello world” 《《 std::endl; callback = fun1; //std::function包裝函數(shù) std::cout 《《 callback(42) 《《 std::endl; //std::function對象實例調用包裝的調用實體 return 0; }3、std::function包裝模板函數(shù)

template《typename T》 T fun2(T a){ return a + 2; } int main(int argc, char *argv[]){ std::cout 《《 “Hello world” 《《 std::endl; callback = fun2《int》; //std::function包裝模板函數(shù) std::cout 《《 callback(10) 《《 std::endl; //std::function對象實例調用包裝的調用實體 return 0; }4、std::function包裝函數(shù)對象

struct add{ int operator()(int x){ return x + 9; } }; int main(int argc, char *argv[]){ std::cout 《《 “Hello world” 《《 std::endl; callback = add(); //std::function包裝對象函數(shù) std::cout 《《 callback(2) 《《 std::endl; //std::function對象實例調用包裝的調用實體 return 0; }5、std::function包裝lamda表達式

int main(int argc, char *argv[]){ std::cout 《《 “Hello world” 《《 std::endl; auto fun3 = [](int a) {return a * 2;}; //lamda表達式 callback = fun3; //std::function包裝lamda表達式 std::cout 《《 callback(9) 《《 std::endl; //std::function對象實例調用包裝的調用實體 return 0; }

6、std::function包裝模板對象函數(shù)

template 《typename T》 struct sub{ T operator()(T a){ return a - 8; } }; int main(int argc, char *argv[]){ std::cout 《《 “Hello world” 《《 std::endl; callback = sub《int》(); //std::function包裝模板對象函數(shù) std::cout 《《 callback(2) 《《 std::endl; //std::function對象實例調用包裝的調用實體 return 0; }

7、std::function包裝模板對象靜態(tài)函數(shù)

template 《typename T》 struct foo2{ static T foo(T a){ return a * 4; } }; int main(int argc, char *argv[]){ std::cout 《《 “Hello world” 《《 std::endl; callback = foo2《int》::foo; //std::function包裝模板對象靜態(tài)函數(shù) std::cout 《《 callback(3) 《《 std::endl; //std::function對象實例調用包裝的調用實體 return 0; }

8、std::function包裝對象靜態(tài)函數(shù)

struct foo1{ static int foo(int a){ return a * 3; } }; int main(int argc, char *argv[]){ std::cout 《《 “Hello world” 《《 std::endl; callback = foo1::foo; //std::function包裝對象靜態(tài)函數(shù) std::cout 《《 callback(5) 《《 std::endl; //std::function對象實例調用包裝的調用實體 return 0; }

9、std::function包裝類成員函數(shù)

struct foo3{ int foo(int a){ return a * a; } }; int main(int argc, char *argv[]){ std::cout 《《 “Hello world” 《《 std::endl; foo3 test_foo1; callback = std::bind(&foo3::foo, test_foo1, std::_1); //std::function包裝類成員函數(shù) std::cout 《《 callback(9) 《《 std::endl; //std::function對象實例調用包裝的調用實體 return 0; }

這里我們用到了std::bind,C++11中std::bind函數(shù)的意義就如字面上的意思一樣,用來綁定函數(shù)調用的某些參數(shù)。std::bind的思想其實是一種延遲計算的思想,將可調用對象保存起來,然后在需要的時候再調用。而且這種綁定是非常靈活的,不論是普通函數(shù)還是函數(shù)對象還是成員函數(shù)都可以綁定,而且其參數(shù)可以支持占位符。

這里的std::_1是一個占位符,且綁定第一個參數(shù),若可調用實體有2個形參,那么綁定第二個參數(shù)的占位符是std::_2。

10、std::function包裝模板類成員函數(shù)

template 《typename T》 struct foo4{ T foo(T a){ return a * 6; } }; int main(int argc, char *argv[]){ std::cout 《《 “Hello world” 《《 std::endl; foo4《int》 test_foo2; callback = std::bind(&foo4《int》::foo, test_foo2, std::_1); //std::function包裝模板類成員函數(shù) std::cout 《《 callback(7) 《《 std::endl; //std::function對象實例調用包裝的調用實體 return 0; }

11、std::function拷貝、移動

int main(int argc, char *argv[]){ std::cout 《《 “Hello world” 《《 std::endl; std::function《int(int)》 callback2 = callback; //拷貝賦值運算符 std::cout 《《 callback2(7) 《《 std::endl; std::function《int(int)》&& callback3 = std::move(callback); //移動賦值運算符 std::cout 《《 callback3(7) 《《 std::endl; std::cout 《《 callback(7) 《《 std::endl; std::function《int(int)》 callback4(callback); //拷貝 std::cout 《《 callback4(7) 《《 std::endl; return 0; }

編輯:jq

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權轉載。文章觀點僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場。文章及其配圖僅供工程師學習之用,如有內(nèi)容侵權或者其他違規(guī)問題,請聯(lián)系本站處理。 舉報投訴
  • STD
    STD
    +關注

    關注

    0

    文章

    36

    瀏覽量

    14383

原文標題:C++ std::function詳解與實戰(zhàn)

文章出處:【微信號:harmonyos_developer,微信公眾號:harmonyos_developer】歡迎添加關注!文章轉載請注明出處。

收藏 人收藏

    評論

    相關推薦

    圖紙模板中的文本變量

    “ ?文本變量和系統(tǒng)自帶的內(nèi)置變量,可以幫助工程師靈活、高效地配置標題欄中的信息,而不用擔心模板中的文字對象被意外修改。 ? ” 文本變量的語法 文本變量以?${VARIABLENAME}?的方式
    的頭像 發(fā)表于 11-13 18:21 ?213次閱讀
    圖紙<b class='flag-5'>模板</b>中的文本變量

    基于ArkTS語言的OpenHarmony APP應用開發(fā):HelloOpenharmony

    1、程序簡介 該程序是基于OpenHarmony標準系統(tǒng)編寫的UI應用:HelloOpenHarmony。 本案例是基于API 9接口開發(fā)。 本案例已在OpenHarmony凌蒙派-RK3568
    發(fā)表于 09-14 12:47

    深入解析MIL-STD-1553B模塊卡

    MIL-STD-1553B模塊
    發(fā)表于 09-06 11:43 ?0次下載

    如何對MIL-STD-1553B進行選型

    MIL-STD-1553B產(chǎn)品選型是一個復雜而細致的過程,?需要綜合考慮多個因素以確保所選產(chǎn)品能夠滿足特定應用場景的需求。一、?引言MIL-STD-1553B作為一種廣泛應用于航空航天領域的數(shù)據(jù)總線
    的頭像 發(fā)表于 09-05 17:37 ?435次閱讀
    如何對MIL-<b class='flag-5'>STD</b>-1553B進行選型

    基于OpenHarmony標準系統(tǒng)的C++公共基礎庫案例:SafeQueue

    1、程序簡介該程序是基于OpenHarmony的C++公共基礎庫的線程安全隊列:SafeQueue。線程安全隊列,是在dequeue的基礎上封裝std::lock_guard,以此實現(xiàn)線程的相關
    的頭像 發(fā)表于 08-30 12:41 ?355次閱讀
    基于OpenHarmony標準系統(tǒng)的C++公共基礎<b class='flag-5'>類</b>庫案例:SafeQueue

    基于OpenHarmony標準系統(tǒng)的C++公共基礎庫案例:SafeStack

    1、程序簡介該程序是基于OpenHarmony的C++公共基礎庫的線程安全隊列:SafeQueue。線程安全隊列,是在dequeue的基礎上封裝std::lock_guard,以此實現(xiàn)線程的相關
    的頭像 發(fā)表于 08-30 12:41 ?371次閱讀
    基于OpenHarmony標準系統(tǒng)的C++公共基礎<b class='flag-5'>類</b>庫案例:SafeStack

    基于OpenHarmony標準系統(tǒng)的C++公共基礎庫案例:ThreadPoll

    1、程序簡介 該程序是基于OpenHarmony標準系統(tǒng)的C++公共基礎庫的線程池處理:ThreadPoll。 本案例完成如下工作: 創(chuàng)建1個線程池,設置該線程池內(nèi)部有1024個線程空間。 啟動5
    發(fā)表于 08-12 11:42

    表面貼裝 TCXO 汽車電子用 DSK321STD:卓越性能,穩(wěn)定可靠的汽車電子核心組件

    表面貼裝 TCXO(汽車電子用)DSK321STD:卓越性能,穩(wěn)定可靠的汽車電子核心組件
    的頭像 發(fā)表于 08-01 10:22 ?1098次閱讀
    表面貼裝 TCXO 汽車電子用 DSK321<b class='flag-5'>STD</b>:卓越性能,穩(wěn)定可靠的汽車電子核心組件

    TSB83AA23 IEEE Std 1394b-2002數(shù)據(jù)表

    電子發(fā)燒友網(wǎng)站提供《TSB83AA23 IEEE Std 1394b-2002數(shù)據(jù)表.pdf》資料免費下載
    發(fā)表于 06-28 11:29 ?0次下載
    TSB83AA23 IEEE <b class='flag-5'>Std</b> 1394b-2002數(shù)據(jù)表

    CW32F003E4芯片入門學習:4.工程模板創(chuàng)建(使用例程或模板)

    模板路徑:CW32F003_StandardPeripheralLib_V1.4ExamplesTemplate
    的頭像 發(fā)表于 04-24 14:14 ?429次閱讀
    CW32F003E4芯片入門學習:4.工程<b class='flag-5'>模板</b>創(chuàng)建(使用例程或<b class='flag-5'>模板</b>)

    IPC-J-STD-001J_EN 2024焊接電氣和電子組件的TOC要求

    電子發(fā)燒友網(wǎng)站提供《IPC-J-STD-001J_EN 2024焊接電氣和電子組件的TOC要求.pdf》資料免費下載
    發(fā)表于 04-22 14:27 ?37次下載

    Altium Designer與Gerber模板的導入指南

    我們在設計完成后,準備輸出Gerber的時候,有時候想用自己的Gerber模板導入PCB進行編輯,那么是如何設置導入的呢?
    的頭像 發(fā)表于 03-28 09:41 ?1471次閱讀
    Altium Designer與Gerber<b class='flag-5'>模板</b>的導入指南

    verilog task和function區(qū)別

    verilog中的task和function都是用于實現(xiàn)模塊中的可重復的功能,并且可以接收參數(shù)和返回結果。但是它們在編寫和使用上有一些區(qū)別。下面將詳細介紹task和function的區(qū)別。 語法結構
    的頭像 發(fā)表于 02-22 15:53 ?1169次閱讀

    verilog function函數(shù)的用法

    Verilog 是一種硬件描述語言 (HDL),主要用于描述數(shù)字電子電路的行為和結構。在 Verilog 中,函數(shù) (Function) 是一種用于執(zhí)行特定任務并返回一個值的可重用代碼塊。函數(shù)在
    的頭像 發(fā)表于 02-22 15:49 ?5997次閱讀

    verilog中function和task的區(qū)別

    非常相似,但它們在功能和使用方式上有一些重要的區(qū)別。 定義和聲明方式不同: Function:使用關鍵字"function"來定義和聲明。函數(shù)可以有一個或多個輸入?yún)?shù),可以有一個返回值
    的頭像 發(fā)表于 02-22 15:40 ?1996次閱讀
    主站蜘蛛池模板: 国产精品色欲AV亚洲三区软件 | 手机在线国产视频 | 日本双渗透| 在线视频网站www色 在线视频免费国产成人 | 果冻传媒在线观看完整版免费 | 亚洲精品国产在线网站 | 精品国产免费人成视频 | 少妇两个奶头喷出奶水了怎么办 | 免费网站在线观看国产v片 免费完整版观看 | 国产精品久久久久久久A片冻果 | ass女人下部欣赏 | 国产精品久久久久久久久久久 | 久爱在线中文在观看 | 久久女婷五月综合色啪 | 美女全光末满18勿进 | 国产最新精品亚洲2021不卡 | 9国产露脸精品国产麻豆 | 99精品日韩 | 美女夫妻内射潮视频 | 在线观看亚洲免费人成网址 | 国产精品亚洲欧美一区麻豆 | 日本50人群体交乱 | 51国产午夜精品免费视频 | yin荡体育课羞耻play双性 | 无码人妻精品一区二区蜜桃色 | 天天啪免费视频在线看 | 美国一级大黄一片免费的网站 | 伊人国产在线观看 | 99手机在线视频 | 日韩免费一区二区三区在线 | 纯肉巨黄H爆粗口男男分卷阅读 | 日本高清免费一本视频在线观看 | 纯肉宠文高h一对一 | 久久www99re在线播放 | 婷婷五月久久精品国产亚洲 | 动漫美女被吸奶 | 国产亚洲精品久久久久5区 国产亚洲精品久久久久 | 男女作爱在线播放免费网页版观看 | TIMI1TV天美传媒在线观看 | 中字幕久久久人妻熟女天美传媒 | 热热久久超碰精品中文字幕 |