C++getline函数需要包含什么头文件
C++getline函数需要包含istream和string头文件。
C++中有两个getline函数,一个是在string头文件中,定义的是一个全局的函数,函数声明是:istream& getline ( istream& is, string& str, char delim );
istream& getline ( istream& is, string& str );
另一个则是istream的成员函数,函数声明是:
istream& getline (char* s, streamsize n );
istream& getline (char* s, streamsize n, char delim );
注意第二个getline是将读取的字符串存储在char数组中而不可以将该参数声明为string类型,因为C++编译器无法执行此默认转换。
C++getline函数使用示例:
#include <iostream>
#include <string>
using namespace std;
int main(){ 、
string name;
string city;
cout << "Please enter your name: ";
getline(cin, name);
cout << "Enter the city you live in: ";
getline(cin, city);
cout << "Hello, " << name << endl;
cout << "You live in " << city << endl;
return 0;
}
扩展资料:
getline函数的语法结构:
getline(<字符数组chs>,<读取字符的个数n>,<终止符>)
在函数遇到和结束定界符相等的字符时函数结束,同时函数抽出定界符,此种情况下该定界符既不被放回输入流,也不被放入要生成的字符串。所以由此可以理解输入结束后的第一个回车是定界符,被确认后抛弃,而第二个才是程序执行运行时正常需要的。