使用 fstream fin 从文件读取时 C++ 程序崩溃

标签 c++ crash ifstream

编程类(class)的最终项目将于明天到期,感谢任何帮助,在接受文件名后,程序在此模块中崩溃。我所说的崩溃是指它输出“此应用程序已请求运行时以异常方式终止它”,然后通常的 Windows “CotD.exe 已停止工作”:

void load(vector<Fish>& stock)
{
    char c;
    do {
        cout << "Welcome to Catch of The Day, enter (f) to choose a file to load from, otherwise enter anything else to load from default file.\n";
        cin >> c;
        if (c == 'f' || c == 'F')
        {
            cout << "Enter file name\n";
            cin >> file;
        }
        ifstream fin(file.c_str());
        if (fin.fail())
        {
            cout << "Could not open " << file << " Check the directory location of CotD.exe and try again\n";
        }
        else
        {
            while (!fin.eof())
            {
                Fish f;
                string blank;
                fin >> f.amt;
                fin >> f.prc;
                fin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
                getline(fin, blank);
                stock.push_back(f);
            }
            fin.close();
            break;
        }
    } while (true);
}

编辑其他相关代码:

#include <iostream>
#include <fstream>
#include <vector>
#include <iomanip>
using namespace std;
//
string file = "default.txt"; //Global variable used to store name of save file. 
//It is global so that load() and save() can both access it.
struct Fish
{
    string type;
    double amt;
    double prc;
    double val;
};
void addType(vector<Fish>&);
void editStock(vector<Fish>&); 
void sortBy(vector<Fish>&);
void sortAsc(vector<Fish>&,char);
void sortDesc(vector<Fish>&,char);
void display(vector<Fish>&);
int search(vector<Fish>&);
void save(vector<Fish>&);
void load(vector<Fish>&);
string getType();
int dispType(string,vector<Fish>&);
int find(string,vector<Fish>&);
double getAmt();
void delType(string,vector<Fish>&);
void menu(vector<Fish>&);
double getPrc();

int main(){
    std::vector<Fish> stock;
    load(stock);
    menu(stock);
    save(stock);
    cout<<endl<<endl
        <<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n"
        <<"|Thank you for using Catch of the Day|\n"
        <<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n";
    system("Pause");
    return 0;

}

我最近编写了这个程序,它看起来与我非常相似,并且运行完美,我看不出有什么区别:

void load(vector<string>& names)
{
    string file, name, bad;
    while (true)
    {
        cout << "Input file name\n";
        getline(cin, file);
        ifstream fin(file.c_str());
        if (fin.fail())
        {
            cout << "Could not open " << file << ", try again.\n";
        }
        else break;
    }
    ifstream fin(file.c_str());
    while (!fin.eof())
    {
        fin >> bad;
        fin >> name;
        cout << "\"" << name << "\"" << endl;

    }
    system("Pause");
    fin.close();

    ifstream fin(file.c_str());
    while (!fin.eof())
    {
        getline(fin, name);
        names.push_back(name);
    }
    system("Pause");
    fin.close();
    cout << "Names added to list\n";
}

最佳答案

我已经编辑了你的代码,这就是我得到的:

    void load(vector<Fish>& stock)
  {
char c;
do {
    cout << "Welcome to Catch of The Day, enter (f) to choose a file to load from, otherwise enter anything else to load from default file.\n";
    cin >> c;
    if (c == 'f' || c == 'F')
    {
        cout << "Enter file name\n";
        cin >> file;
    }
    ifstream fin(file.c_str());
    if (fin.fail())
    {
        cout << "Could not open " << file << " Check the directory location of CotD.exe and try again\n";
    }
    else
    {
        Fish f;
        string blank;
        if (fin>>f.amt)
        {
           if (fin>>f.prc)
           {
            getline(fin,blank);
            stock.pushback(f);
           }
        }

        fin.close();
        break;
    }
} while (true);
    }

当然,这是在不知道文件中有什么以及 Fish 到底是什么的情况下,所以我不知道这是否是您要查找的内容。

编辑:如果您可以包含该文件,或者只是一条“鱼”的一部分(我认为这就是文件的内容),那么提供帮助会更容易。

关于使用 fstream fin 从文件读取时 C++ 程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22901068/

相关文章:

c++ - 声明一个 double 给它一个值 0 但打印结果意外改变

crash - Facebook OAuth2- “Sorry, something went wrong”

C++: ifstream::getline 问题

c++ - boost 异常的错误信息

c++ - 处理 3rd 方库内存不足导致的崩溃

c++ - 为数组分配空间

javascript - 补间JS导致WebGL上下文丢失

objective-c - 测试后的一个问题

c++ - getline 函数只读取第一行

C++ ifstream 有奇怪的段错误,具体取决于文件在磁盘上的位置