web-dev-qa-db-ja.com

削除された関数を参照しようとしています

私はfstreamクラスについて学ぼうとしていますが、問題があります。コンテンツを読み込んで表示するためだけに、冗談を含むテキストファイルと、パンチライン(joke.txt)および(punchline.txt)を含むテキストファイルをいくつか作成しました。私はユーザーにファイル名を尋ね、それを開く必要がある場合は、フラグをクリアしてからコンテンツを読み込みます。 tそれが何を意味するか知っている

エラー1:

"IntelliSense: function "std::basic_ifstream<_Elem, _Traits>::basic_ifstream(const std::basic_ifstream<_Elem, _Traits>::_Myt &) [with _Elem=char, _Traits=std::char_traits<char>]" (declared at line 818 of "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\fstream") cannot be referenced -- it is a deleted function

2番目のエラーはまったく同じですが、2番目の関数(displayLastLine())のものです

およびエラー3:

Error   1   error C2280: 'std::basic_ifstream<char,std::char_traits<char>>::basic_ifstream(const std::basic_ifstream<char,std::char_traits<char>> &)' : attempting to reference a deleted function

ここに私のコードがあります:

#include "stdafx.h" 
#include <string>    
#include <iostream>  
#include <fstream>   

using namespace std; 

void displayAllLines(ifstream joke);
void displayLastLine(ifstream punchline);

 int main()          
{
    string fileName1, fileName2;
    ifstream jokeFile, punchlineFile;


    // Desribe the assigned project to the User
    cout << "This program will print a joke and its punch line.\n\n";

    cout << "Enter the name of the joke file (ex. joke.txt): ";
    cin  >> fileName1;
    jokeFile.open(fileName1.data());  
    if (!jokeFile)
    {
        cout << "  The file " << fileName1 << " could not be opened." << endl;
    }

    else
    {   
        cout << "Enter name of punch line file (ex. punchline.txt): ";
        cin  >> fileName2;
        punchlineFile.open(fileName2.data());  
        if (!punchlineFile)
        {
            cout << "  The file " << fileName2 << " could not be opened." << endl;
            jokeFile.close();
        }

        else
        {   
            cout << endl << endl; 

            displayAllLines(jokeFile);

            displayLastLine(punchlineFile); 
            cout << endl;

            jokeFile.close();
            punchlineFile.close();
        }
    }


    // This prevents the Console Window from closing during debug mode
    cin.ignore(cin.rdbuf()->in_avail());
    cout << "\nPress only the 'Enter' key to exit program: ";
    cin.get();

    return 0;
}
 void displayAllLines(ifstream joke)
 {
     joke.clear();
     joke.seekg(0L, ios::beg);
     string jokeString;
     getline(joke, jokeString);
     while (!joke.fail())
     {
         cout << jokeString << endl;
     }
 }
 void displayLastLine(ifstream punchline)
 {
     punchline.clear();
     punchline.seekg(0L, ios::end);
     string punchString;
     getline(punchline, punchString);
     while (!punchline.fail())
     {
         cout << punchString << endl;
     }
 }
20
jacksonSD

クラスstd::ifstreamのコピーコンストラクターである削除済み関数を呼び出します。

参照 を見ると、コピーコンストラクターが許可されていないことがわかります。

したがって、使用する代わりに:

void displayAllLines(ifstream joke);
void displayLastLine(ifstream punchline);

参照による呼び出しを使用する必要があります。

void displayAllLines(ifstream& joke);
void displayLastLine(ifstream& punchline);

参照を使用すると、コピーでメソッドを呼び出すのと同じように動作しますが、実際には、新しいコピーで構築されたオブジェクトではなく、元のオブジェクトを操作しています。参照による呼び出しをさらに使用する場合は、このことに留意してください。

39
Theolodis

上記のリンクで述べたように、定義された関数の変数を変更すると、元の宣言された変数(main())にも影響することに注意してください。

0
msarafzadeh