我只是想从文件中读取每个字符并将其打印在屏幕上。 为了测试,我尝试在打印字符之前先在控制台屏幕上打印ascii值。
我试图阅读的文件内容如下:
assign1_2.cpp:33:20: error: cannot convert 'std::string
{aka std::basic_string<char>}' to 'const char*' for argument '1'
to 'int atoi(const char*)'
我使用下面的代码
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <stdlib.h>
using namespace std;
void CountLetters(string filename);
int main()
{
CountLetters("count.txt");
}
void CountLetters(string filename)
{
cout << filename << endl;
ifstream in;
in.open(filename.c_str(), ios::in);
vector<char> letter;
char temp;
while (!in.eof())
{
cout << in.get() << endl;
}
in.close();
}
运行这些代码后,我在控制台屏幕的末尾看到“-1”。 有人请解释一下?感谢
答案 0 :(得分:14)
请勿在{{1}} 1 时阅读。那不是一个合适的阅读循环。
阅读,同时阅读成功。
eof()
int x;
while ((x = in.get()) != EOF)
{
cout << x << endl;
}
的测试不能保证阅读成功。当您测试in.eof()
时,您实际上正在测试上一次读取操作是否尝试读取文件末尾。这很糟糕,因为这意味着先前的读取操作失败。它失败了,你不在乎,只是按下它使用它返回的值,即使它失败了。
当in.eof()
失败时,它会返回常量in.get()
。那是你应该检查的。如果EOF
失败,您不希望继续循环,就像它成功一样。
1 同样适用于in.get()
或不good()
。