我有这个错误:
BSPArduino.cpp:316:错误:将'const BSPArduino'传递为'this' 'void void BSPArduino :: enableWdt(const WATCHDOG_TIMER_DELAY&,const ___ bool&)'丢弃限定符
此方法定义如下:
void BSPArduino::enableWdt(const WATCHDOG_TIMER_DELAY &delay, const ___bool &enable)
我想这样称呼:
enableWdt(this->watchdogTimer, ___false);
使用:
WATCHDOG_TIMER_DELAY watchdogTimer;
我不明白为什么这个构建错误...
非常感谢你的帮助
安东尼
答案 0 :(得分:15)
BSPArduino :: enableWdt()是一种非const方法。如果您尝试从const中调用非const方法,则会出现此错误。
本质上错误是试图告诉你你正在抛弃“this”的常量。
答案 1 :(得分:3)
您尝试从const
成员函数调用非const
函数;这是不允许的。
如果可能,请向const
添加enableWdt
限定符。如果那是不可能的(因为它修改了对象),那么你必须从调用函数中删除const
限定符,或者重构代码以便从其他地方调用enableWdt
。