c++关于文件输入输出的问题ifstream in;
#include<iostream>#include<fstream>usingnamespacestd;intmain(){ifstreamin;in.open("te...
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream in;
in.open( "test.txt" );
if( !in )
{
cerr << "打开文件失败" <<endl;
}
char x;
while( in >> x )
{
cout << x;
}
cout << endl;
in.close();
return 0;
}
test.txt里面我存放了“I love fishc.com!”
可是运行输出的却是“Ilovefishc,com!”
空格为什么会被吃了? 展开
#include <fstream>
using namespace std;
int main()
{
ifstream in;
in.open( "test.txt" );
if( !in )
{
cerr << "打开文件失败" <<endl;
}
char x;
while( in >> x )
{
cout << x;
}
cout << endl;
in.close();
return 0;
}
test.txt里面我存放了“I love fishc.com!”
可是运行输出的却是“Ilovefishc,com!”
空格为什么会被吃了? 展开
2个回答
展开全部
while( in >> x )//改成in >> std::noskipws >> x 或x=in.get()
{
cout << x;
}
ifstream的>>操作默认吃空格,手动用std::noskipws指定不吃空格或用不会吃空格的get成员函数即可
追问
非常感谢!
改成while(in >> std::noskipws >> x)是OK的,可是改成while(x=in.get())却是字符串后+无限空格输出。是我理解错了,还是while(x=in.get())这个不能用呢
展开全部
关于这个可以参考ifstream输出空格,这个问题我刚好几天前浏览过,这里有个,参考,是知道里面的。http://zhidao.baidu.com/question/532451930.html 他用模板做的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询