0

该程序应该提示用户输入他们的用户名。收到用户名后,它会将其与“.history”连接以创建 username.history。然后它打开该文件 (username.history) 并从中读取输入。我在这里遇到了段错误。每当它打开由于文件不存在而为空的文件时,它会读取多行然后抛出段错误。我认为问题可能源于我尝试打开文件的方式,但我不确定。这是导致问题的部分:

// File input and output
ifstream f_in;
ofstream f_out;

// Prompt user for their username.
char username[80];
cout << "Please input your username: " << endl;
cin >> username;
cout << endl;
cout << "Loading history file if it exists." << endl;

// Create file naem and initialize the file line counter to 0.
strcat(username, ".history");
int fcount = 0;

// Open file and read in lines if there are any.
// Place read lines into the command string for use later.
char tmp[50];

f_in.open(username);
while(!f_in.eof()){
    f_in >> tmp;
    cmd[fcount] = tmp;
    fcount++;
}
f_in.close();

其他相关信息: cmd 被声明为全局变量(char cmd[200][50])

任何帮助将不胜感激。

4

2 回答 2

2

不确定这是否是唯一的问题,但这cmd[fcount] = tmp是错误的。你应该使用strcpy().

于 2012-05-31T22:56:20.757 回答
0
而(f_in.good())
{
    f_in >> tmp;
    cmd[fcount] = tmp;
    fcount++;
}
于 2012-05-31T22:57:46.157 回答