gpt4 book ai didi

c++ - 错误左值需要作为一元 '&' 操作数

转载 作者:行者123 更新时间:2023-11-28 05:42:43 24 4
gpt4 key购买 nike

我在对象中创建线程时遇到问题。错误是需要作为一元“&”操作数的左值

CPP文件

#include "AirQ.h"


static int i=0;


AirQ::AirQ(int pinNo, bool input):Sensor("AIRQUALITY", "PPM",pinNo,input) {
threadShouldRunAQ = true;
this->bufferLength = 256;

signal(SIGINT, AirQ::signalHandler);
airQualitySensor = new upm::Ublox6(pinNo);

if (!airQualitySensor->setupTty(B9600))
std::cerr << "[ERROR][GPS] Failed to setup tty port parameters!" << std::endl;

try
{
std::thread air = std::thread(&AirQ::processDataAQ(), this);
}
catch (std::exception e)
{
std::cerr << "[ERROR][GPS] " << e.what() << std::endl;
}
}

AirQ::~AirQ() {
// TODO Auto-generated destructor stub
}


void AirQ::signalHandler(int sigNo)
{
if (sigNo == SIGINT)
threadShouldRunAQ = false;

}

void AirQ::processDataAQ()
{

while (threadShouldRunAQ)
{
i++;
if (airQualitySensor != NULL)
if (airQualitySensor->dataAvailable())
{
//TODO
}


usleep(100000);
}
}

void AirQ::getData(std::string value)
{
this->readBuffer = value;
}

std::string AirQ::logData()
{
AirQ::setCollectedFlag(false);
return this->readBuffer;
}

void AirQ::setCollectedFlag(bool flag)
{
this->collectedFlag = flag;
}

H文件

#include <ublox6.h>
#include "Sensor.h"

#ifndef AIRQ_H_
#define AIRQ_H_

static bool threadShouldRunAQ;
static upm::Ublox6* airQualitySensor;



class AirQ: private Sensor {
private:
std::string readBuffer;
bool collectedFlag;
size_t bufferLength;
static void signalHandler(int);
void processDataAQ();

protected:


public:
AirQ(int, bool);
virtual ~AirQ();

std::string logData();
void getData(std::string);
void setCollectedFlag(bool);
std::thread processingThread;
};


#endif /* AIRQ_H_ */

CPP文件报错,行std::thread air = std::thread(&AirQ::processDataAQ(), this); 我不明白哪里出了问题。

我主要是像这样创建对象。

AirQ* test = new AirQ(0,true);

我们将不胜感激。

解决方案:将 &AirQ::processDataAQ() 更改为 &AirQ::processDataAQ。后者是指向成员函数的指针。 – 皮特·贝克尔

最佳答案

std::thread air = std::thread(&AirQ::processDataAQ(), this);
// ^^

括号调用函数。您不想调用该函数;你只想给它命名。

删除括号。


我还建议摆脱复制初始化。

所以,简单地说:

std::thread air(&AirQ::processDataAQ, this);

关于c++ - 错误左值需要作为一元 '&' 操作数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36814214/

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