共用方式為


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-2f6f6b13a74c44e186100b69b592b6cd-aaad7c3d74364e129f5f2eb39fb9b7ab

需求

標題: <ios>

命名空間: std

請參閱

參考

iostream 程式設計

iostreams 慣例