cin

指定 cin 全局流。

extern istream cin;

返回值

istream 对象。

备注

对象控制从标准输入的抽象化为运行的限制。 对于对象构造,调用 cin.关系 返回 &cout

示例

在此示例中,那么,当遇到非数值字符时,cin 将流位的失败。 程序清除bit的失败并从流中清除无效字符执行。

// iostream_cin.cpp
// compile with: /EHsc
#include <iostream>
using namespace std;

int main()
{
   int x;
   cout << "enter choice:";
   cin >> x;
   while (x < 1 || x > 4)
   {
      cout << "Invalid choice, try again:";
      cin >> x;
      // not a numeric character, probably
      // clear the failure and pull off the non-numeric character
      if (cin.fail())
      {
         cin.clear();
         char c;
         cin >> c;
      }
   }
}
  2

要求

标头: <iostream>

命名空间: std

请参见

参考

istream

iostream编程

(mfc)约定