c++getline函数用法
来源:千锋教育
发布人:zyh
2023-05-31
推荐
在 C++ 中,std::getline() 是一个用于从输入流中读取一行文本的函数。它可以读取包含空格的整行文本,并将其存储到指定的字符串变量中。
函数原型如下:
std::istream& getline(std::istream& is, std::string& str, char delim);
参数:
is:输入流,用于读取文本。
str:字符串变量,用于存储读取的文本行。
delim:可选参数,指定行结束符的字符。默认情况下,行结束符是换行符(\n)。
返回值:
返回输入流 is 的引用,以便进行连续的输入操作。
示例:
#include <iostream>
#include <string>
int main() {
std::string line;
std::cout << "请输入一行文本:";
std::getline(std::cin, line);
std::cout << "你输入的文本是:" << line << std::endl;
return 0;
}
在上述示例中,使用 std::getline() 函数从标准输入流 std::cin 中读取一行文本,并将其存储到字符串变量 line 中。然后,输出该字符串变量的内容。
注意:std::getline() 函数需要在代码中包含<iostream> 和<string> 头文件。