在线观看www成人影院-在线观看www日本免费网站-在线观看www视频-在线观看操-欧美18在线-欧美1级

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

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

3天內不再提示

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

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

01

std::function簡介

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

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

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

std::function實戰

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模板類成員函數聲明

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從成員函數里我們知道std::function對象實例不允許進行==和!=比較操作,std::function模板類實例最終調用成員函數_Rp operator()(_ArgTypes.。。) const進而調用包裝的調用實體。1、std::function包裝函數指針定義一個std::function《int(int)》對象實例

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

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; //函數指針fun_ptr指向fun1函數 callback = fun_ptr; //std::function對象包裝函數指針 std::cout 《《 callback(10) 《《 std::endl; //std::function對象實例調用包裝的實體 return 0; }2、std::function包裝函數

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

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包裝模板函數 std::cout 《《 callback(10) 《《 std::endl; //std::function對象實例調用包裝的調用實體 return 0; }4、std::function包裝函數對象

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包裝對象函數 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包裝模板對象函數

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包裝模板對象函數 std::cout 《《 callback(2) 《《 std::endl; //std::function對象實例調用包裝的調用實體 return 0; }

7、std::function包裝模板對象靜態函數

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包裝模板對象靜態函數 std::cout 《《 callback(3) 《《 std::endl; //std::function對象實例調用包裝的調用實體 return 0; }

8、std::function包裝對象靜態函數

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包裝對象靜態函數 std::cout 《《 callback(5) 《《 std::endl; //std::function對象實例調用包裝的調用實體 return 0; }

9、std::function包裝類成員函數

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包裝類成員函數 std::cout 《《 callback(9) 《《 std::endl; //std::function對象實例調用包裝的調用實體 return 0; }

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

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

10、std::function包裝模板類成員函數

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包裝模板類成員函數 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

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

    關注

    0

    文章

    36

    瀏覽量

    14359

原文標題:C++ std::function詳解與實戰

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

收藏 人收藏

    評論

    相關推薦

    基于ArkTS語言的OpenHarmony APP應用開發:HelloOpenharmony

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

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

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

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

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

    基于OpenHarmony標準系統的C++公共基礎庫案例:SafeQueue

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

    基于OpenHarmony標準系統的C++公共基礎庫案例:SafeStack

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

    基于OpenHarmony標準系統的C++公共基礎庫案例:ThreadPoll

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

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

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

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

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

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

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

    verilog task和function區別

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

    verilog function函數的用法

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

    verilog中function和task的區別

    非常相似,但它們在功能和使用方式上有一些重要的區別。 定義和聲明方式不同: Function:使用關鍵字"function"來定義和聲明。函數可以有一個或多個輸入參數,可以有一個返回值
    的頭像 發表于 02-22 15:40 ?1909次閱讀

    鴻蒙ArkTS的起源和簡介

    的ArkTS聲明式開發范式的基本組成說明如下: 裝飾器 用來裝飾、結構體、方法以及變量,賦予其特殊的含義,如上述示例中 @Entry 、 @component 、 @State 都是裝飾器。具體而言
    發表于 01-16 16:23

    Samtec - 通過優化焊膏模板開孔來擴大連接器的選擇范圍

    mm焊膏模板配合使用,同時在良品率為100%的情況下也能滿足IPC-J-STD-001 Class 2標準的要求。
    發表于 01-02 15:33 ?207次閱讀
    Samtec - 通過優化焊膏<b class='flag-5'>模板</b>開孔來擴大連接器的選擇范圍

    使用Jenkins和單個模板部署多個Kubernetes組件

    YAML模板文件(.tpl)來部署多個類似的Kubernetes組件,而不需要為每個組件提供單獨的模板文件。
    的頭像 發表于 01-02 11:40 ?773次閱讀
    使用Jenkins和單個<b class='flag-5'>模板</b>部署多個Kubernetes組件
    主站蜘蛛池模板: 日本wwwhdsex69| 永久免费在线观看| 人人舔| 日本亚洲成人| 欧美三级一区| 黄色大片视频| 国模大尺度人体一区| 成人欧美一区二区三区黑人3p| 国产啊v在线观看| 亚洲国产精| 免费人成网站永久| 香蕉成人999视频| 久久国产免费观看精品| 亚洲三级在线视频| 在线免费观看一区二区三区| 男人j桶女人j免费视频| 亚洲激情视频| 欧美成人三级伦在线观看| 国产黄色精品| 人人爱人人艹| 中文字幕一区二区三区在线播放 | 亚洲网在线观看| 国产乱码精品一区二区三| 天天插伊人| 5566精品资源在线播放| 精品国产污污免费网站入口| 四虎永久在线日韩精品观看| 琪琪午夜免费影院在线观看| 成人种子| 在线一区二区观看| 男人的天堂视频网站清风阁| 亚洲插| 日本三级黄在线观看| 日韩欧美一级| 999毛片| 国产成人精品一区二区三区| 午夜在线观看cao| 三级视频国产| 影音先锋色偷偷米奇四色| 视频亚洲一区| 黄色日本网站|