C++ 代码段中 get() 的意义

Significance of get() in the C++ snippet

这是一个与 file handling 有关的问题,我们将数据输入到文件中,然后显示其内容。我无法理解 cin.get(ch); 行对输出有何帮助。我发现如果我从代码中删除这一行,程序将无法在第二次迭代中获取变量标记的输入。为什么会这样?我对这里 get() 的工作有点困惑。我的代码:

 #include<iostream>
 #include<conio>
 #include<fstream>
 int main()
 {

  ofstream fout;
  fout.open("student",ios::out);
  char name[30],ch;
  float marks=0.0;
  for(int i=0;i<5;i++)
  {
   cout<<"Student "<<(i+1)<<":\t Name:";
   cin.get(name,30);
   cout<<"\t\t Marks: ";
   cin>>marks;
   cin.get(ch); **// the confusion is in this line**
   fout<<name<<"\n"<<marks<<"\n";
  }
  fout.close();
  ifstream fin;
  fin.open("student",ios::in);
  fin.seekg(0);
  cout<<"\n";
  for(i=0;i<5;i++)
  {
   fin.get(name,30);
   fin.get(ch);
   fin>>marks;
   fin.get(ch);
   cout<<"Student Name: "<<name;
   cout<<"\t Marks: "<<marks<<"\n";
  }
  fin.close();
  return 0;
}

来自函数的描述

basic_istream<charT,traits>& get(char_type* s, streamsize n,
char_type delim );

在 C++ 标准中:

Characters are extracted and stored until any of the following occurs: ...

— traits::eq(c, delim) for the next available input character c (in which case c is not extracted).

从函数的描述来看

basic_istream<charT,traits>& get(char_type* s, streamsize n);

Effects: Calls get(s,n,widen(’\n’))

因此这个调用

cin.get(ch); 

用于从输入缓冲区中提取换行符。否则下一次调用函数

cin.get(name,30);

将读取一个空字符串。

代替调用

cin.get(ch); 

你可以调用成员函数ignore