ios_base::xalloc
Spécifie qu'une variable fait partie du flux.
static int xalloc( );
Valeur de retour
La fonction membre statique retourne une valeur statique enregistrée, qu'il incrémente à chaque appel.
Notes
Vous pouvez utiliser la valeur de retour comme argument d'index unique en appelant les fonctions membres iword ou pword.
Exemple
// 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;
}
Configuration requise
en-tête : <ios>
l'espace de noms : DST