共用方式為


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
  1 2 3
.1..2..3.

需求

標題: <ios>

命名空間: std

請參閱

參考

iostream 程式設計

iostreams 慣例