ios_base::xalloc
指定变量是流的一部分。
static int xalloc( );
返回值
静态成员函数将返回一存储的静态值,对每个调用获得。
备注
当调用成员函数 iword 或 pword时,可以使用返回值作为唯一索引参数。
示例
// ios_base_xalloc.cpp
// compile with: /EHsc
// Lets you store user-defined information.
// iword, jword, xalloc
#include <iostream>
int main( )
{
using namespace std;
static const int i = ios_base::xalloc();
static const int j = ios_base::xalloc();
cout.iword( i ) = 11;
cin.iword( i ) = 13;
cin.pword( j ) = "testing";
cout << cout.iword( i ) << endl;
cout << cin.iword( i ) << endl;
cout << ( char * )cin.pword( j ) << endl;
}
要求
页眉: <ios>
命名空间: std