gpt4 book ai didi

c++ - read() 缓冲区有无效数据(指针问题?)

转载 作者:太空宇宙 更新时间:2023-11-04 06:02:15 24 4
gpt4 key购买 nike

我遇到的问题是以下函数中的data 数组有一些糟糕的值(在我看来像是一些内存位置):

int
GPIO::GetValue() {
char data[1];

if (read(_valuefd, data, 1) < 0) {
perror("Error on reading value fd");
return -1;
}

printf("int GPIO::GetValue() %s\n", data);

if (strcmp(data, "1") == 0) {
return GPIO_VALUE_ON;
}
if (strcmp(data, "0") == 0) {
return GPIO_VALUE_OFF;
}

return -1;
}

Full Source

printf的结果:

int GPIO::GetValue() 0cx$??ݾ??˶8@l

我不知道这是怎么回事。我在一些运行良好的简单程序中提取了相同的代码。还有一些其他函数 GPIO::GetDirection 可以执行相同的操作并且也可以正常工作。我猜有一些内存、指针、分配问题。

出了什么问题?

博多

最佳答案

我认为你得到了正确的结果。只是 null 终止字符串 data

char data[2];
data[1] = '\0';

实际上,您不需要声明数组。只需 char data; 就足够了。那么您可能需要进行以下更改:

char data;
if (read(_valuefd, &data, 1) < 0) {
perror("Error on reading value fd");
return -1;
}

printf("int GPIO::GetValue() %c\n", data);

if (data == '1') {
return GPIO_VALUE_ON;
}
else if (data == '0') {
return GPIO_VALUE_OFF;
}
else {
return -1;
}

关于c++ - read() 缓冲区有无效数据(指针问题?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17183833/

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