我正在尝试解析文件,但遇到了奇怪的分段错误。这是我正在使用的代码:
#include <iostream>
using namespace std;
int main ()
{
FILE *the_file;
the_file = fopen("the_file.txt","r");
if (the_file == NULL)
{
cout << "Error opening file.\n";
return 1;
}
int position = 0;
while (!feof(the_file))
{
unsigned char *byte1;
unsigned char *byte2;
unsigned char *byte3;
int current_position = position;
fread(byte1, 1, 1, the_file);
}
}
我用命令编译
g++ -Wall -o parse_file parse_file.cpp
如果我在声明current_position的while循环中删除该行,则代码可以正常运行。我还可以将该声明移到无符号char指针的声明之上,并且代码将运行而不会出现问题。为什么在此声明错误?
最佳答案
byte1
是未初始化的指针;您需要分配一些存储空间。
unsigned char *byte1 = malloc(sizeof(*byte1));
fread(&byte1, 1, 1, the_file);
...
free(byte1);
甚至更好的是,根本不用指针:
unsigned char byte1;
fread(&byte1, 1, 1, the_file);