关于输入getline

Posted virtualtan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于输入getline相关的知识,希望对你有一定的参考价值。

此函数可读取整行,包括前导和嵌入的空格,并将其存储在字符串对象中。

getline 函数如下所示:

getline(cin, inputLine);

其中 cin 是正在读取的输入流,而 inputLine 是接收输入字符串的 string 变量的名称。下面的程序演示了 getline 函数的应用:

// This program illustrates using the getline function
//to read character data into a string object.
#include <iostream>
#include <string> // Header file needed to use string objects
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的主要内容,如果未能解决你的问题,请参考以下文章

关于cin,getline一起出现无法正常输入的问题

关于scanf 与 cin gets(),getline()......输入输出字符串的区别

在 getline 之后在 C++ 中输入

C ++中的getline输入错误[重复]

为啥 std::getline() 在格式化提取后跳过输入?

为啥 std::getline() 在格式化提取后跳过输入?