共用方式為


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 慣例