- 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.
推薦閱讀
- Unreal Engine Physics Essentials
- Instant Testing with CasperJS
- Java EE 6 企業級應用開發教程
- Vue.js前端開發基礎與項目實戰
- Learning Neo4j 3.x(Second Edition)
- Building Minecraft Server Modifications
- Scala謎題
- Android Wear Projects
- Learning YARN
- iPhone應用開發從入門到精通
- Go語言從入門到精通
- Mastering Gephi Network Visualization
- Drupal 8 Development Cookbook(Second Edition)
- Java核心技術速學版(第3版)
- FORTRAN程序設計權威指南