由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 关于文件读取的C++ 问题?
相关主题
how to read a sentence into a vector of string?fstream 扫盲,谢谢!
请教一个C++的问题What is wrong with the code?
读取数据求教一个很诡异的ifstream问题,求助~~
C++读文本文件怎么判断换行?请问一个入门级 dynamic memory 的问题
问一个C++文件读取的问题如何让这个cur变量正确指向新地址
C++ Q 99-102 (转载)how to use cin as default ifstream?
C++ 在 windows 上 结果正确, 在 linux 上结果总是不一样,怎how to skip the last empty lines in ifstream?
a very simple c++ question请教用c++读取large file怎么可以快一些?
相关话题的讨论汇总
话题: fin话题: getline话题: zz1话题: include话题: cout
进入Programming版参与讨论
1 (共1页)
g*******s
发帖数: 59
1
i am using visual studio 2005 to test the use of getline.
The text file is like:
test.txt
a is a file
1.0 2.0
b isnot a file
3.0 4.0
The codes r
#include
#include
#include
using namespace::std;
void main()
{
string zz,zz1;
ifstream fin("test.txt");
getline(fin,zz);
double a[2],b[2];
fin>>a[0]>>a[1];
cout< // Now problem begins!
getline(fin,zz1);
fin>>b[0]>>b[1];
cout< }
Could you explain this t
l****i
发帖数: 43
2
after your
cout< The statement
getline(fin,zz1);
only get an return;
put another getline(fin,zz1) there, it will work.
g*******s
发帖数: 59
3
Thanks alot!

【在 l****i 的大作中提到】
: after your
: cout<: The statement
: getline(fin,zz1);
: only get an return;
: put another getline(fin,zz1) there, it will work.

1 (共1页)
进入Programming版参与讨论
相关主题
请教用c++读取large file怎么可以快一些?问一个C++文件读取的问题
fstream不能做类的成员吗C++ Q 99-102 (转载)
C++ problemC++ 在 windows 上 结果正确, 在 linux 上结果总是不一样,怎
天,如何能让程序转得快点?有包子。a very simple c++ question
how to read a sentence into a vector of string?fstream 扫盲,谢谢!
请教一个C++的问题What is wrong with the code?
读取数据求教一个很诡异的ifstream问题,求助~~
C++读文本文件怎么判断换行?请问一个入门级 dynamic memory 的问题
相关话题的讨论汇总
话题: fin话题: getline话题: zz1话题: include话题: cout