このように、私はCを学ん++と私ははifstream方法で文字列を使用しようとしているいくつかのトラブルを取得していますに文字列を入れてここでは、完全なコードは次のとおりです。はifstream方法
:// obtaining file size
#include <iostream>
#include <fstream>
using namespace std;
int main (int argc, char** argv)
{
string file;
long begin,end;
cout << "Enter the name of the file: ";
cin >> file;
ifstream myfile (file);
begin = myfile.tellg();
myfile.seekg (0, ios::end);
end = myfile.tellg();
myfile.close();
cout << "File size is: " << (end-begin) << " Bytes.\n";
return 0;
}
そして、ここでは、Eclipseのエラー、法の前のxです
no matching function for call to `std::basic_ifstream<char, std::char_traits<char> >::basic_ifstream(std::string&)'
しかし、Eclipseでコンパイルしようとすると、方法の前にxと表示されますが、構文にエラーがありますが、構文に間違いがありますか?ありがとう!
はあなたが取得しているエラーの詳細を提供してもらえますか?あるいは、完全なサンプルを投稿することもできます... –
多分fstreamは含まれていませんか?完全なコードを入力してください – CsTamas
正しいヘッダーが含まれていますか? – mdec