c_cpp 函数getline()

Posted

tags:

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

#include <iostream>
#include <string>
using namespace std;

int main() {
	string str1, str2;
	// a bc def
	cin >> str1;
	// a bc def
	getline(cin, str2);
	cout << str1 << endl;	// a
	cout << str2 << endl;	//  bc def
}

以上是关于c_cpp 函数getline()的主要内容,如果未能解决你的问题,请参考以下文章

转 cincin.get()cin.getline()getline()gets()等函数的用法

getline函数(精华版)

getline()函数

getline()和get()的使用区别

从0开始的练级路——getline()函数/toupper()函数

getline()函数