c++ getline
时间: 2023-06-25 12:01:56 浏览: 70
c++ getline
5星 · 资源好评率100%
在 C++ 中,`getline()` 是一个函数,用于从输入流中读取一行文本,并将其存储在字符串对象中。它的语法如下:
```c++
std::getline(std::istream& input, std::string& string);
```
其中 `input` 是输入流对象,`string` 是要存储读取文本的字符串对象。例如:
```c++
#include <iostream>
#include <string>
int main() {
std::string line;
std::cout << "Enter a sentence:\n";
std::getline(std::cin, line);
std::cout << "You entered: " << line << "\n";
return 0;
}
```
在上面的示例中,`getline()` 从标准输入流中读取一行文本,并将其存储在 `line` 字符串中。然后,它输出该字符串。
阅读全文