在 C++ 中创建使用回调函数

Jinku Hu 2023年10月12日
  1. 在 C++ 中用不同的表示法来声明回调函数
  2. 使用 std::map 在 C++ 中存储带有相应键的多个回调函数
  3. 在 C++ 中根据用户输入的内容调用特定的回调函数
在 C++ 中创建使用回调函数

本文将介绍几种在 C++ 中使用回调函数的方法。

在 C++ 中用不同的表示法来声明回调函数

回调是指作为参数传递给其他函数的函数(即代码中的子程序),以便在程序执行中稍后调用。

回调函数可以使用不同的语言专用工具来实现,但在 C++ 中,所有的回调函数都被称为可调用对象。可调用对象可以是传统的函数、函数的指针、lambda 表达式、bind 创建的对象、重载 () 操作符的类以及 <functional> 头中定义的 std::function 类型对象。

下面的示例代码定义了两个传统函数 addTwoInts/subtructTwoInts,一个是存储在 modOfTwoInts1 变量中的 lambda 表达式,一个是 std::function 类型的 modOfTwoInts2。这些函数实现了整数的基本算术运算符+-modulo

#include <functional>
#include <iostream>
#include <map>
#include <vector>

using std::cin;
using std::cout;
using std::endl;
using std::function;
using std::map;
using std::string;

int addTwoInts(int i, int j) { return i + j; }
int subtructTwoInts(int i, int j) { return i - j; }

int main() {
  auto modOfTwoInts1 = [](int i, int j) { return i % j; };
  cout << "modOfTwoInts1(10, 3) = " << modOfTwoInts1(10, 3) << endl;

  cout << "addTwoInts(10, 3) = " << addTwoInts(10, 3) << endl;
  cout << "subtructTwoInts(10, 3) = " << subtructTwoInts(10, 3) << endl;

  function<int(int, int)> modOfTwoInts2 = [](int i, int j) { return i % j; };
  cout << "modOfTwoInts2(10, 3) = " << modOfTwoInts2(10, 3) << endl;

  return EXIT_SUCCESS;
}

输出:

modOfTwoInts1(10, 3) = 1
addTwoInts(10, 3) = 13
subtructTwoInts(10, 3) = 7
modOfTwoInts2(10, 3) = 1

使用 std::map 在 C++ 中存储带有相应键的多个回调函数

使用回调函数的常见方法是将它们存储在 vectormap 这样的数据结构中,我们可以很方便地从这些数据结构中访问其中的每一个函数,并在程序运行时调用特定的函数。在本例中,我们选择了一个 map 容器,将算术运算符作为字符串存储为键,将相应的函数作为值。需要注意的是,这个代码示例并没有向控制台输出任何内容。

#include <functional>
#include <iostream>
#include <map>

using std::cin;
using std::cout;
using std::endl;
using std::function;
using std::map;
using std::string;

int addTwoInts(int i, int j) { return i + j; }
int subtructTwoInts(int i, int j) { return i - j; }

int main() {
  auto modOfTwoInts1 = [](int i, int j) { return i % j; };
  auto subtruct = subtructTwoInts;

  map<string, int (*)(int, int)> op_funcs;
  op_funcs.insert({"+", addTwoInts});
  op_funcs.insert({"%", modOfTwoInts1});
  op_funcs.insert({"-", subtruct});

  return EXIT_SUCCESS;
}

在 C++ 中根据用户输入的内容调用特定的回调函数

由于上一节的原因,应切实利用存储在 map 容器中的回调函数。一种方法是从用户那里获取操作符,并将其传递给 map 容器,作为调用相应函数对象的键。这种方法在 UI 应用中经常被用来处理事件。注意,我们传递的是调用任意整数参数 (10, 3) 的函数。

#include <functional>
#include <iostream>
#include <map>

using std::cin;
using std::cout;
using std::endl;
using std::function;
using std::map;
using std::string;

int addTwoInts(int i, int j) { return i + j; }
int subtructTwoInts(int i, int j) { return i - j; }

int main() {
  auto modOfTwoInts1 = [](int i, int j) { return i % j; };
  auto subtruct = subtructTwoInts;

  map<string, int (*)(int, int)> op_funcs;
  op_funcs.insert({"+", addTwoInts});
  op_funcs.insert({"%", modOfTwoInts1});
  op_funcs.insert({"-", subtruct});

  string user_input;
  cout << "\nType one of the following ops\n"
          "for integers 10 and 3 to be used:\n"
          "1) + 2) - 3) % \n";

  cin >> user_input;
  cout << op_funcs[user_input](10, 3);

  return EXIT_SUCCESS;
}

输出(如果输入是+):

Type one of the following ops
for integers 10 and 3 to be used:
1) + 2) - 3) %
+  
13
作者: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

DelftStack.com 创始人。Jinku 在机器人和汽车行业工作了8多年。他在自动测试、远程测试及从耐久性测试中创建报告时磨练了自己的编程技能。他拥有电气/电子工程背景,但他也扩展了自己的兴趣到嵌入式电子、嵌入式编程以及前端和后端编程。

LinkedIn Facebook

相关文章 - C++ Function