- Mastering C++ Programming
- Jeganathan Swaminathan
- 156字
- 2021-07-02 18:28:46
The std::invoke( ) method
The std::invoke() method can be used to call functions, function pointers, and member pointers with the same syntax:
#include <iostream>
#include <functional>
using namespace std;
void globalFunction( ) {
cout << "globalFunction ..." << endl;
}
class MyClass {
public:
void memberFunction ( int data ) {
std::cout << "\nMyClass memberFunction ..." << std::endl;
}
static void staticFunction ( int data ) {
std::cout << "MyClass staticFunction ..." << std::endl;
}
};
int main ( ) {
MyClass obj;
std::invoke ( &MyClass::memberFunction, obj, 100 );
std::invoke ( &MyClass::staticFunction, 200 );
std::invoke ( globalFunction );
return 0;
}
The preceding code can be compiled and the output can be viewed with the following commands:
g++-7 main.cpp -std=c++17
./a.out
The output of the preceding program is as follows:
MyClass memberFunction ...
MyClass staticFunction ...
globalFunction ...
The std::invoke( ) method is a template function that helps you seamlessly invoke callable objects, both built-in and user-defined.
推薦閱讀
- jQuery Mobile Web Development Essentials(Third Edition)
- Unity Virtual Reality Projects
- 精通搜索分析
- Python 3網絡爬蟲實戰
- Python機器學習實戰
- 快人一步:系統性能提高之道
- Visual Basic程序設計實驗指導(第二版)
- Canvas Cookbook
- R語言:邁向大數據之路(加強版)
- Mockito Essentials
- Instant Automapper
- Python+Office:輕松實現Python辦公自動化
- Visual Basic語言程序設計基礎(第3版)
- Visual Basic程序設計實驗指導及考試指南
- Ionic3與CodePush初探:支持跨平臺與熱更新的App開發技術