我不知道我的代码有什么问题。我试图从控制台获取两个文件的文件路径,然后我用这些文件初始化一些fstream对象,一个ios::in | ios::out
初始化,另一个加ios::binary
。
以下是我的代码的重要部分:
// Function prototypes
void INPUT_DATA(fstream);
void INPUT_TARGETS(fstream);
int main()
{
// Ask the user to specify file paths
string dataFilePath;
string targetsFilePath;
cout << "Please enter the file paths for the storage files:" << endl
<< "Data File: ";
getline(cin, dataFilePath); // Uses getline() to allow file paths with spaces
cout << "Targets File: ";
getline(cin, targetsFilePath);
// Open the data file
fstream dataFile;
dataFile.open(dataFilePath, ios::in | ios::out | ios::binary);
// Open the targets file
fstream targetsFile;
targetsFile.open(targetsFilePath, ios::in | ios::out);
// Input division data into a binary file, passing the proper fstream object
INPUT_DATA(dataFile);
// Input search targets into a text file
INPUT_TARGETS(targetsFile);
...
}
// Reads division names, quarters, and corresponding sales data, and writes them to a binary file
void INPUT_DATA(fstream dataFile)
{
cout << "Enter division name: ";
...
dataFile << divisionName << endl;
...
}
// Reads division names and quarters to search for, and writes them to a file
void INPUT_TARGETS(fstream targetsFile)
{
cout << "\nPlease input the search targets (or \"exit\"):";
...
targetsFile.write( ... );
...
}
然而,Visual Studio在INPUT_DATA(dataFile);
和INPUT_TARGETS(targetsFile);
部分对我大吼大叫,说:
function "std::basic_fstream<_Elem, _Traits>::basic_fstream(const std::basic_fstream<_Elem, _Traits>::_Myt &) [with _Elem=char, _Traits=std::char_traits<char>]" (declared at line 1244 of "c:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\include\fstream") cannot be referenced -- it is a deleted function
我在头文件中挖了一遍,直到找到第1244行:
basic_fstream(const _Myt&) = delete;
我不知道为什么会这样。我仍然是C ++的新手,我可能只是做了一些愚蠢的事情,但有人可以帮忙吗?
编辑:澄清标题
答案 0 :(得分:3)
您无法复制std::fstream
,因此删除了复制构造函数,正如您通过挖掘所发现的那样:)
也没有理由复制std::fstream
。在您的情况下,您希望通过引用传递它,因为您想要修改原始std::fstream
,即您在main
中创建的那个,而不是创建一个全新的(这就是复制构造函数的原因)删除,顺便说一句:)
)。
答案 1 :(得分:2)
那是因为删除了std::fstream
的拷贝构造函数。你无法通过价值传递它。
要解决此问题,请通过引用传递std::fstream
,如下所示:
void INPUT_DATA(fstream& dataFile) { /* ... */ }
void INPUT_TARGETS(fstream& targetsFile) { /* ... */ }
您无需更改代码中的任何其他内容。