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