- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我编写了一个小的 C++ 程序来根据按钮按下的持续时间调用不同的函数。现在我想将其重构为更通用并且可以从类中访问。理想情况下,我想以与此类似的方式使用该类:
myduration buttonDuration()
myduration.add(*func1(1), *func2(4), *func3(8))
其中参数是一个数值,表示在多少秒后调用特定函数。我不知道从哪里开始寻找如何实现一个将带有参数的回调函数作为输入的类。
我当前的代码如下所示:(“Ticker”生成一个基于时间的中断并在此处用于计算经过的秒数)
#include "mbed.h"
DigitalOut led1(LED1);
DigitalOut led2(LED2);
DigitalOut led3(LED3);
DigitalOut led4(LED4);
Serial pc(USBTX, USBRX);
Ticker ticker;
InterruptIn pb(p17);
void state1(void){
led2 = !led2;
}
void state2(void){
led3 = !led3;
}
void state3(void){
led4 = !led4;
}
// Global count variable
int volatile counter = 0;
int volatile STATE = 0;
void countCallback(void) {
counter = counter + 1;
}
void stateEval(void) {
if(counter >=1 && counter <=3){
STATE = 1;
state1();
}
if (counter >= 4 && counter <=7){
STATE = 2;
state2();
}
if (counter >=8 && counter <=10){
STATE = 3;
state3();
}
pc.printf("STATE %d \n", STATE);
}
// pb Interrupt routine - is interrupt activated by a falling edge of pb input
void pb_hit_interrupt (void) {
ticker.attach(countCallback, 1);
counter = 0;
}
void pb_release_interrupt (void) {
ticker.detach();
stateEval();
counter = 0;
STATE = 0;
// pc.printf("Counter: %d \n", counter);
}
int main() {
// Use internal pullup for pushbutton
pb.mode(PullUp);
// Delay for initial pullup to take effect
wait(.01);
// Attach the address of the interrupt handler routine for pushbutton
pb.rise(&pb_release_interrupt);
pb.fall(&pb_hit_interrupt);
// Blink led1 in main routine forever while responding to pb changes
// via interrupts that activate pb_hit_interrupt routine
while (1) {
led1 = !led1;
wait(.5);
}
}
最佳答案
std::map 和 upper/lower_bound 的组合应该可以解决问题。
#include <iostream>
#include <functional>
#include <map>
using state_caller = std::map<double , std::function<void()>>;
void after3()
{
std::cout << "up to 3 seconds" << std::endl;
}
void after1()
{
std::cout << "up to 1 seconds" << std::endl;
}
void after8()
{
std::cout << "up to 8 seconds" << std::endl;
}
void handle(const state_caller& cs, double secs)
{
auto i = cs.lower_bound(secs);
if (i == cs.end())
{
std::cout << "no entry for this" << std::endl;
}
else
{
i->second();
}
}
int main()
{
state_caller caller;
caller.emplace(1, after1);
caller.emplace(3, after3);
caller.emplace(8, after8);
handle(caller, 0.5);
handle(caller, 2.9);
handle(caller, 3.0);
handle(caller, 10.0);
return 0;
}
but I don't have
std::map
available on my implementation.
也许是这样的?同样,iostream
只是为了提供一个演示框架。如果您没有标题 <algorithm>
方便(为什么不呢?)然后很容易写。有一个 std::find_if
的实现这里:http://en.cppreference.com/w/cpp/algorithm/find
#include <iostream>
#include <algorithm>
struct action
{
int counter_limit;
int new_state;
void (*transition)(void);
};
void state1() {
std::cout << __func__;
}
void state4() {
std::cout << __func__;
}
void state8() {
std::cout << __func__;
}
// note that action_table is ordered by ascending counter_limit, so std::find will find the lower
// entry where counter_limit > counter
const action action_table[] =
{
{ 4, 1, state1 },
{ 8, 2, state4 },
{ 11, 3, state8 },
};
int STATE =0;
void stateEval(int counter) {
auto iaction = std::find_if(std::begin(action_table),
std::end(action_table),
[counter](const action& a) {
return counter < a.counter_limit;
});
if (iaction == std::end(action_table)) {
// handle error here
}
else {
STATE = iaction->new_state;
iaction->transition();
}
std::cout << " : " << "counter = " << counter << ", STATE = " << STATE << std::endl;
}
int main()
{
for (int counter = 0 ; counter < 11; ++counter)
stateEval(counter);
return 0;
}
关于c++ - 如何将静态逻辑重构为实现由 C++ 中的参数触发的回调函数的泛型类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36034275/
当我尝试加载库 Raster 时,我收到如下错误: 错误:inDL(x, as.logic(local), as.logic(now), ...) 中的“raster”的包或命名空间加载失败:无法加载
当我尝试加载库 Raster 时,我收到如下错误: 错误:inDL(x, as.logic(local), as.logic(now), ...) 中的“raster”的包或命名空间加载失败:无法加载
望着help section about_Comparison_Operators of PowerShell我是这样理解的: PS C:\> $false,$false -eq $true PS C
我刚刚修改了旧代码,现在似乎没有任何效果。请您指导我哪里出错了。 一些不起作用的事情是: 以前,焦点始终停留在屏幕上唯一的输入字段上。 (现在不行了),代码中的 if else 条件也不起作用。 On
请帮我找到一个使用普通 'ol javascript 的解决方案(我无法使用外部框架)。此外,CSS :hover 选择器不适用于现实世界的实现。 注册事件发生的事情设置所有调用最后注册事件数组项。
我想创建一个软件来为残障 child 交通规划公交路线(及其最佳载客量)。 这些总线具有以下规范: m 个座位(最多 7 个 - 因为有司机和助理) o 轮椅“座位”(最多 4 个) 固定的最大负载量
有人能帮我吗?似乎我的 for 逻辑根本不起作用,因为它一直在上午 12:00 返回我的开始时间 这是我的代码 Sub forlogic() Dim i As Single Dim t
我正在尝试设置 OR两个切片器过滤器之间的逻辑。两个切片器来自相同的数据集。以下是更多详细信息: 我的源表: 带切片器的视觉效果: 我的目标是,如果我从切片器 1 和切片器 2 中选择任何值,我的视觉
我有以下 C 语句: int res = x & (x ^ y); 有没有办法做同样的事情,但每次只使用一次x和y? 例如: x | (~x & y) == x | y 最佳答案 是的,通过扩展 xo
我正在创建 Azure 逻辑应用程序以将新的 Sharepoint 文件添加到 Azure Blob。 Sharepoint 由我的公司运行,我使用我的凭据登录来为逻辑应用程序创建 Sharepoin
我有一个问题要求为给定函数合成最简单的乘积表达式总和。基本上,如果 AB == CD,则函数为 1,否则为 0,结果如下: (!A && !B && !C && !D) || (!A && B &&
我正在尝试确定是否可以在不溢出的情况下计算两个 32 位整数的总和,同时仅使用某些按位运算符和其他运算符。因此,如果整数 x 和 y 可以相加而不会溢出,则以下代码应返回 1,否则返回 0。 ((((
处理乍一看需要许多嵌套 if 语句的复杂业务逻辑的好方法是什么? 例子: 折扣券。可能: 1a) 超值折扣 1b) 百分比折扣 2a) 正常折扣 2b) 累进折扣 3a) 需要访问优惠券 3b) 不需
假设我有一个“numbers”对象数组,其中包含“startNo”整数和“endNo”整数。 数组中可以有多个“数字”,我想获取一个包含修改对象的新数组,该数组仅具有不重叠的范围。 例如:如果数组有:
我在这个问题上遇到了困难。我正在使用 JavaScript。 我有一个文本区域,用于检测 @ 输入并将其位置存储在数组中。 var input = "@a @b @c" //textarea var
默认 IN 使用 OR 基本逻辑。有没有办法在范围内使用 AND 基本逻辑。 例如下面的查询 SELECT ItemId,CategoryID FROM ItemCategories WHERE Ca
我想在您将鼠标悬停在网站图像上时添加叠加层。我在这里实现了这个,它工作正常http://jsfiddle.net/stujLbjh/ 这是js代码: var divs = document.query
这个问题在这里已经有了答案: Which is faster: x>2 是否比 x>>31 快?换句话说,sar x, 2 是否比 sar x, 31 快?我做了一些简单的测试,他们似乎有相同的速度
我有grails criteriaQuery,我在这里再次检查OR逻辑,就像这样一个状态变量: or { eq("status", Status.ONE) eq("status",
我有grails criteriaQuery,我在这里再次检查OR逻辑,就像这样一个状态变量: or { eq("status", Status.ONE) eq("status",
我是一名优秀的程序员,十分优秀!