skipws

导致空间不由输入流读取。

ios_base& skipws(
   ios_base& _Str
);

参数

  • _Str
    对类型 ios_base对象,或者从 ios_base继承的类型。

返回值

为_Str派生的对象的引用。

备注

默认情况下,skipws 有效。 noskipws 将导致空间输入流读取。

操作者有效调用 _Str.setf(ios_base::skipws),然后返回 _Str。

示例

#include <iostream>
#include <string>

int main( ) 
{
   using namespace std;
   char s1, s2, s3;
   cout << "Enter three characters: ";
   cin >> skipws >> s1 >> s2 >> s3;
   cout << "." << s1  << "." << endl;
   cout << "." << s2 << "." << endl;
   cout << "." << s3 << "." << endl;
}
  1 2 3

FakePre-5d09c85d1ff84c878214eac5f53444ec-fb827d8095584f51b4f8f966839b929b

要求

标头: <ios>

命名空间: std

请参见

参考

iostream编程

(mfc)约定