gpt4 book ai didi

C++ 将引用传递给同一类中的函数

转载 作者:行者123 更新时间:2023-11-28 04:28:59 25 4
gpt4 key购买 nike

我正在使用 C++ 中的 mbed 框架开发一个嵌入式系统。要将中断函数附加到串行中断,我通常这样做:

Serial pc(pin_u_tx, pin_u_rx,115200);

void SerialStart(void) {
...
pc.attach(&SerInt);
...
}

void SerInt(){
...
}

但现在我需要在类内部做同样的事情,但它不起作用,因为我不能引用内部函数:

CTCOMM::CTCOMM()
{
pc = new Serial(ser_tx, ser_rx, ser_baud);
pc->attach(&serial_interrupt);
}

void CTCOMM::serial_interrupt() {
...
}

我尝试了几种方法,但都不起作用:

pc->attach(&serial_interrupt);
gives the error
lib\CTcomm\ctcomm.cpp:12:17: error: ISO C++ forbids taking the address of an unqualified or parenthesized non-static member function to form a pointer to member function. Say '&CTCOMM::serial_interrupt' [-fpermissive]

pc->attach(*serial_interrupt);
gives the error
lib\CTcomm\ctcomm.cpp:12:17: error: invalid use of member function 'void CTCOMM::serial_interrupt()' (did you forget the '

pc->attach(*serial_interrupt());
gives the error
lib\CTcomm\ctcomm.cpp:12:33: error: void value not ignored as it ought to be ()' ?)

pc->attach((*this)->*(serial_interrupt));
gives the error
lib\CTcomm\ctcomm.cpp:12:23: error: invalid use of non-static member function 'void CTCOMM::serial_interrupt()'

等等(我尝试了更多在这里找到的建议,但没有成功)。指向该函数的正确方法是什么?

最佳答案

试试这个。pc->attach(callback(this, &CTCOMM::serial_interrupt));

pc->attach(this, &CTCOMM::serial_interrupt); 也应该有效。但它在最新版本的 mbed OS 中已被弃用。

这是最新的 Mbed API: https://os.mbed.com/docs/v5.10/mbed-os-api-doxy/classmbed_1_1_serial.html

关于C++ 将引用传递给同一类中的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53471303/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com