0

私の問題は、テキストファイルを読み取ろうとするときに「failbit」が直接設定されることです。少なくとも私にとって奇妙なことは、プログラムをビルドして実行すると、それが機能することです。しかし、デバッグしようとすると、failbit が設定されます。

私が得る実際のエラーメッセージはこれです:

「Steg1_1A.exe の 0x7740c41f で未処理の例外: Microsoft C++ 例外: std::ios_base::メモリ位置 0x003bf8e4 での失敗..」

コンソール プログラムへのテキストは「ios_base::failbit set」です。

問題は、デバッグ時に failbit が「プログラムをクラッシュ」しないように修正するにはどうすればよいかということです。

これが私の機能です:

void selectedMenuChoice(int choice)
{
int index = 0, initValue = 0;
const int fileNumberCount = 24;
double numFromFile = 0.0, sum = 0.0, average = 0.0, max = 0.0, min = 0.0;

switch (choice)
{
    // "Display temperature values"
    case 1:
        cout << "\nDisplaying the latest 24 temperature values:\n\n";
        break;

    // "View maximum and minimum temperatures"
    case 2:
        cout << "\nCalculating the maximum and minimum temperature...\n";
        break;

    // "View average temperature"
    case 3:
        cout << "\nCalculating average temperature...\n";
        break;
}

ifstream file;

file.exceptions(ifstream::failbit | ifstream::badbit);
try 
{
    //////////////////////////////////////////////////////////////////////////
    //////////////////////////////////////////////////////////////////////////
    // Here is the problem. It throws an exception directly when debugging
    file.open("templog.txt"); // filnamnet 
    //file.fail();

    // "View maximum and minimum temperatures"
    if (choice == 2)
    {
        initValue = 1;
        file >> numFromFile;
        max = min = numFromFile;
    }

    // Loopar igenom filen dock baserat på ett konstantvärde.
    for (index = initValue; index < fileNumberCount; index++)
    {
        file >> numFromFile;

        switch (choice)
        {
            // "Display temperature values"
            case 1:
                if (index % 6 == 0)
                {
                    cout << endl;
                }
                cout << fixed << setprecision(2) << setw(8) << numFromFile;
                break;

            // "View maximum and minimum temperatures"
            case 2:
                if (numFromFile > max )
                {
                    max = numFromFile;
                }
                if (numFromFile < min)
                {
                    min = numFromFile;
                }
                break;

            // "View average temperature"
            case 3:
                sum += numFromFile;
                average = sum/24;
                break;
        }
    }


}
catch (ifstream::failure e) 
{
    //std::cerr << "Exception opening/reading file.";
    cout << e.what(); // Skriver ut vad felet egentligen är..
}

file.close(); 

// Skriver ut information till användaren baserat på valet som användaren har gjort
if (choice == 2)
{
    cout << "\nMaximum temperature: " << fixed << setprecision(2) << max <<" degrees Celcius\n";
    cout << "\nMinimum temperature: " << min << " degrees Celcius\n";
}

else if (choice == 3)
{
    cout << "\nAverage temperature: ";
    cout << fixed << setprecision(2) << average << " degrees Celcius\n";
}

continueOnKeyPressed();
}
4

1 に答える 1

0

以前のコメントの拡張:

多くのコンパイラは、実行可能ファイルのデバッグ バージョンとリリース バージョンを別のディレクトリに配置します。リリース モードでは機能するが、デバッグ モードでは機能しない場合file.open("templog.txt");は、入力ファイルがそのバージョンの実行可能ファイルと同じディレクトリにある可能性があります。

ファイルを常に見つけられるようにするには、open()関数を呼び出すときに絶対パス名を使用します。

于 2013-04-05T16:39:10.310 に答える