在 C++ 中创建使用回调函数
本文将介绍几种在 C++ 中使用回调函数的方法。
在 C++ 中用不同的表示法来声明回调函数
回调是指作为参数传递给其他函数的函数(即代码中的子程序),以便在程序执行中稍后调用。
回调函数可以使用不同的语言专用工具来实现,但在 C++ 中,所有的回调函数都被称为可调用对象。可调用对象可以是传统的函数、函数的指针、lambda 表达式、bind
创建的对象、重载 ()
操作符的类以及 <functional>
头中定义的 std::function
类型对象。
下面的示例代码定义了两个传统函数 addTwoInts
/subtructTwoInts
,一个是存储在 modOfTwoInts1
变量中的 lambda 表达式,一个是 std::function
类型的 modOfTwoInts2
。这些函数实现了整数的基本算术运算符+
、-
和 modulo
。
#include <iostream>
#include <functional>
#include <vector>
#include <map>
using std::cout; using std::cin;
using std::endl; using std::map;
using std::function; 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++ 中存储带有相应键的多个回调函数
使用回调函数的常见方法是将它们存储在 vector
或 map
这样的数据结构中,我们可以很方便地从这些数据结构中访问其中的每一个函数,并在程序运行时调用特定的函数。在本例中,我们选择了一个 map
容器,将算术运算符作为字符串存储为键,将相应的函数作为值。需要注意的是,这个代码示例并没有向控制台输出任何内容。
#include <iostream>
#include <functional>
#include <map>
using std::cout; using std::cin;
using std::endl; using std::map;
using std::function; 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 <iostream>
#include <functional>
#include <map>
using std::cout; using std::cin;
using std::endl; using std::map;
using std::function; 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
相关文章
在 C++ 中通过掷骰子生成随机值
发布时间:2023/04/09 浏览次数:169 分类:C++
-
本文解释了如何使用时间因子方法和模拟 C++ 中的掷骰子的任意数方法生成随机数。了解它是如何工作的以及它包含哪些缺点。提供了一个 C++ 程序来演示伪数生成器。
在 C++ 中使用模板的链表
发布时间:2023/04/09 浏览次数:158 分类:C++
-
本文解释了使用模板在 C++ 中创建链表所涉及的各个步骤。工作程序演示了一个链表,该链表使用模板来避免在创建新变量时声明数据类型的需要。
在 C++ 中添加定时延迟
发布时间:2023/04/09 浏览次数:142 分类:C++
-
本教程将为你提供有关在 C++ 程序中添加定时延迟的简要指南。这可以使用 C++ 库为我们提供的一些函数以多种方式完成。
在 C++ 中创建查找表
发布时间:2023/04/09 浏览次数:155 分类:C++
-
本文重点介绍如何创建查找表及其在不同场景中的用途。提供了三个代码示例以使理解更容易,并附有代码片段以详细了解代码。
如何在 C++ 中把字符串转换为小写
发布时间:2023/04/09 浏览次数:63 分类:C++
-
介绍了如何将 C++ std::string 转换为小写的方法。当我们在考虑 C++ 中的字符串转换方法时,首先要问自己的是我的输入字符串有什么样的编码
如何在 C++ 中确定一个字符串是否是数字
发布时间:2023/04/09 浏览次数:163 分类:C++
-
本文介绍了如何检查给定的 C++ 字符串是否是数字。在我们深入研究之前,需要注意的是,以下方法只与单字节字符串和十进制整数兼容。
如何在 c++ 中查找字符串中的子字符串
发布时间:2023/04/09 浏览次数:65 分类:C++
-
本文介绍了在 C++ 中检查一个字符串是否包含子字符串的多种方法。使用 find 方法在 C++ 中查找字符串中的子字符串
如何在 C++ 中把字符串转换为 Char 数组
发布时间:2023/04/09 浏览次数:107 分类:C++
-
本文介绍了在 C++ 中把字符串转换为 char 数组的多种方法。使用 std::basic_string::c_str 方法将字符串转换为 char 数组