本文主要是介绍c++中cin对象中getline()方法和get()方法的区分,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
getline 和get的区别:
getline 每次读取一行,舍弃最后的换行符,下一个getline来的时候,直接读取下一行!
get每次读取一行,但是将每一行最后的换行符保留在输入队列中!下一个get来的时候,先读取输入队列中的换行符!
#include <iostream>
using namespace std;
int main()
{
const int Size=20;
char s1[Size];
char s2[Size];
cout<<"Enter the s1"<<endl;
cin.get(s1,Size);
cout<<"Enter the s2"<<endl;
cin.get(s2,Size);
cout<<"s1:"<<s1<<endl;
cout<<"s2:"<<s2<<endl;
return 0;
}
#include <iostream>
using namespace std;
int main()
{
const int Size=20;
char s1[Size];
char s2[Size];
cout<<"Enter the s1"<<endl;
cin.get(s1,Size);
cout<<"Enter the s2"<<endl;
cin.get(s2,Size);
cout<<"s1:"<<s1<<endl;
cout<<"s2:"<<s2<<endl;
return 0;
}
这篇关于c++中cin对象中getline()方法和get()方法的区分的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!