先决条件:C++中的getline(字符串)
在C++中,流类支持面向行的函数getline()和write()分别执行输入和输出函数。 getline()函数读取以新行结尾或直到达到最大限制的整行文本。 getline()是istream类的成员函数,其语法为:
// (buffer, stream_size, delimiter)
istream& getline(char*, int size, char='\n')
// The delimiter character is considered as '\n'
istream& getline(char*, int size)
该函数执行以下操作:
1.提取直到定界符的字符。
2.将字符存储在缓冲区中。
3.提取的最大字符数为大小– 1。
注意,终止(或分隔符)字符可以是任何字符(如“”,“”或任何特殊字符等)。读取终止字符,但不将其保存到缓冲区中,而是将其替换为null字符。
// C++ program to show the getline() with
// character array
#include
using namespace std;
int main()
{
char str[20];
cout << "Enter Your Name::";
// see the use of getline() with array
// str also replace the above statement
// by cin >> str and see the difference
// in output
cin.getline(str, 20);
cout << "\nYour Name is:: " << str;
return 0;
}
输入 :
Aditya Rakhecha
输出 :
Your Name is:: Aditya Rakhecha
在上面的程序,直到遇到新行或多个的最大数量(这里为20)的声明cin.getline(STR,20)读取的字符串。尝试使用具有不同限制的函数,然后查看输出。
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。