c++ getline



#include <iostream>

#include <string>

string Myname;

getline(cin, Myname);

cout<<Myname<<endl;



转载:http://blog.csdn.net/slience_perseverance/article/details/19819601

getline(istream &in, string &s)

从输入流读入一行到string s

•功能:
–从输入流中读入字符,存到string变量
–直到出现以下情况为止:
•读入了文件结束标志
•读到一个新行
•达到字符串的最大长度
–如果getline没有读入字符,将返回false,可用于判断文件是否结束
[cpp] view plain copy print ?
  1. #include<iostream>  
  2. #include<fstream>  
  3. #include<string>  
  4.   
  5. using namespace std;  
  6.   
  7. int main()  
  8. {  
  9.     string buff;  
  10.     ifstream infile;  
  11.     ofstream outfile;  
  12.     cout<<"Input file name: "<<endl;  
  13.     cin>>buff;  
  14.     infile.open(buff.c_str());  
  15.   
  16.     if(!infile)  
  17.         cout<<"error"<<buff<<endl;  
  18.       
  19.     cout<<"Input outfile name: "<<endl;  
  20.     cin>>buff;  
  21.     outfile.open(buff.c_str());  
  22.       
  23.     while(getline(infile, buff))  
  24.         outfile<<buff<<endl;  
  25.   
  26.     infile.close();  
  27.     outfile.close();  
  28.     return 0;  
  29.   
  30. }  

你可能感兴趣的:(c++ getline)