gpt4 book ai didi

c++ - fputs() 中的段错误(核心已转储)

转载 作者:行者123 更新时间:2023-11-28 02:34:40 27 4
gpt4 key购买 nike

我有以下代码:

#include <stdio.h>
#include <stdlib.h>

#include <iostream>

using namespace std;

int main(){
size_t size;
char *line;

FILE *pipe = fopen("/ftproot/fifo", "r");

if(pipe == NULL){
perror("Could not open pipe for reading");
return EXIT_FAILURE;
}

FILE *out = fopen("/ftproot/output", "w");

if(out == NULL){
perror("Could not open output file for writing");
return EXIT_FAILURE;
}

while (getline(&line, &size, pipe) > 0) {
cout << "<<" << line << ">>\n";
fputs(line, out);
}

return 0;
}

事实证明,如果我删除行 cout << "<<" << line << ">>\n";我收到段错误。但是,如果这一行在代码中,则一切正常。

我不知道这怎么可能。如有任何答复,我将不胜感激。

提前致谢。

最佳答案

您还没有将line 设置为NULL。普通局部变量最初包含垃圾。

那么,为什么当您打印该行时它会起作用?变量中的“垃圾”就是变量存储在内存中的地方,并且根据您的代码所做的其他事情,它可能会发生变化。这就是 C++ 标准所说的“未定义行为”,这意味着任何事情都可能发生。

关于c++ - fputs() 中的段错误(核心已转储),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27900726/

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