问题及代码:
#include <iostream>
#include <cstdlib>
#include <fstream>
using namespace std;
int main()
{
fstream file;
file.open("abc.txt", ios::in); // (2)
if(!file) {
cout<<"abc.txt can’t open."<<endl;
exit(1);
}
char ch;
int i=0;
while(!file.eof()) // (3)
{
file.get(ch);
++i; // (4)
}
--i;
cout<<"Character: "<<i<<endl;
file.close();// (5)
return 0;
}
运行结果:
学习小结:
这个程序因为只在文件里边写了6个字符和用了一个回车符号,按道理应该是输出7的,但是刚开始输出的是8
然后去百度了一下eof函数的用,才明白读入最后一个字符后eof函数的值还是false也就是表示字符还没结束,这样就导致了计算的字符数会多了一个
在主函数中加了一句--I,舒服了....
加油!