共用方式為


noskipws

造成空間從輸入資料流讀取。

ios_base& noskipws( 
   ios_base& _Str 
);

參數

  • _Str
    參考型別 ios_base物件,或是繼承自 ios_base的型別。

傳回值

對 _Str 衍生的物件參考。

備註

根據預設, skipws 生效。 當空間寫入輸入資料流時,它表示緩衝區的結尾。

操作工具有效地呼叫 _Str.unsetf(ios_base::skipws),則傳回 _Str。

範例

// ios_noskipws.cpp
// compile with: /EHsc
#include <iostream>
#include <string>

int main() {
   using namespace std;   
   string s1, s2, s3;
   cout << "Enter three strings: ";
   cin >> noskipws >> s1 >> s2 >> s3;
   cout << "." << s1  << "." << endl;
   cout << "." << s2 << "." << endl;
   cout << "." << s3 << "." << endl;   
}

輸入

1 2 3

範例輸出

.1.
..
..

需求

標題: <ios>

命名空間: std

請參閱

參考

iostream 程式設計

iostreams 慣例