fpos::state
設定或傳回的轉換狀態。
Statetype state( ) const;
void state(
Statetype _State
);
參數
- _State
新的轉換狀態。
傳回值
轉換狀態。
備註
第10%成員函式來傳回 St 成員物件儲存的值。St 成員物件的第二個成員函式 _State 存放區。
範例
// fpos_state.cpp
// compile with: /EHsc
#include <ios>
#include <iostream>
#include <fstream>
int main() {
using namespace std;
streamoff s;
ifstream file( "fpos_state.txt" );
fpos<mbstate_t> f = file.tellg( );
char ch;
while ( !file.eof( ) )
file.get( ch );
s = f;
cout << f.state( ) << endl;
f.state( 9 );
cout << f.state( ) << endl;
}
輸入:fpos_state.txt
testing
Output
0
9
需求
標題: <ios>
命名空間: std