LINUX.ORG.RU

C++ ifstream read


0

0

file.log:
---------------------
bla bla bla
fdssssssfsw fffff
----end of file------

...
std::ifstream Tfile ( file.log );
std::string strBuf;
while ( !Tfile.eof() )
{
    Tfile >> strBuf;
    std::cout << "output : " << strBuf << std::endl;
}
...

Rezalt : 
output : bla
output : bla
output : bla
output : fdssssssfsw
output : fffff

A kak prochitat stroky celikom "bla bla bla"?
Tnx.
anonymous

Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.