當我編譯這段代碼時,我總是收到「沒有匹配的函數」錯誤。有人可以幫我解決這個問題嗎?C++中的輸出文件問題
#include <iostream>
#include <fstream>
#include <stdlib.h>
#include <string>
using namespace std;
int main()
{
string filename[]="Hello.txt";
ofstream OutFile;
OutFile.open(filename);
if(OutFile.fail()) // check for successfully open ,
{
cout << "file named can not be found \n";
exit(1);
}
OutFile << "Hello, this is my output file";
OutFile.close();
system("pause");
return 0;
}
編輯:閱讀和displaing文件時 關於什麼的?我遇到了getline問題,它不會編譯。任何人都可以在那裏指出問題嗎?
#include <iostream>
#include <fstream>
#include <stdlib.h>
#include <string>
using namespace std;
int main()
{
char filename[] = "Hello.txt";
string line = "Hello, this is my output file";
ofstream OutFile;
OutFile.open(filename);
if(OutFile.fail()) // check for successfully open ,
{
cout << "file named can not be found \n";
exit(1);
}
OutFile << line;
if (OutFile.is_open())
OutFile.getline(line);
OutFile.close();
system("pause");
}
它是一個參數(單個字符串參數)函數 - OutFile.open(文件名)。您正在使用一組文件名。你的錯誤堆棧跟蹤應該會顯示給你。改爲使用單個字符串。 – ha9u63ar 2014-11-04 20:26:16
然後請在下一次出現錯誤時告訴我們錯誤發生在哪一行以及您正在使用哪種編譯器。 – 2014-11-04 20:37:37