我有以下代码:
#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";
,我会收到分段错误。但是,如果这行代码在代码中,一切正常。
我不知道这是怎么回事。我很感激任何答案。
提前致谢。
答案 0 :(得分:2)
您尚未将行设置为NULL。普通的局部变量最初都有垃圾。
那么为什么打印线时它会起作用? &#34;垃圾&#34;在变量中恰好存在于存储变量的内存中,并且根据代码的其他内容,它可以改变。这就是C ++标准所称的&#34;未定义的行为&#34;,这意味着任何事情都可能发生。