共用方式為


showpos

造成無效的明確簽署。

ios_base& showpos( 
   ios_base& _Str 
);

參數

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

傳回值

對 _Str 衍生的物件參考。

備註

noshowpos 是預設值。

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

範例

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

int main( ) 
{
   using namespace std;
   int i = 1;

   cout << noshowpos << i << endl;   // noshowpos is default
   cout << showpos << i << endl;
}
  

需求

標題: <ios>

命名空間: std

請參閱

參考

iostream 程式設計

iostreams 慣例