Partager via


paires : : en premier (STL/CLR)

Première valeur enveloppée.

    Value1 first;

Notes

L'objet stocke la première valeur encapsulée de l'objet .

Exemple

// cliext_pair_first.cpp 
// compile with: /clr 
#include <cliext/utility> 
 
int main() 
    { 
    cliext::pair<wchar_t, int> c1(L'x', 3); 
    System::Console::WriteLine("[{0}, {1}]", c1.first, c1.second); 
 
    cliext::pair<wchar_t, int>::first_type first_val = c1.first; 
    cliext::pair<wchar_t, int>::second_type second_val = c1.second; 
    System::Console::WriteLine("[{0}, {1}]", first_val, second_val); 
    return (0); 
    } 
 
  

Configuration requise

En-tête : <cliext/utility>

Espace de noms : cliext

Voir aussi

Référence

paires (STL/CLR)

paires : : first_type (STL/CLR)

paires : : en second lieu (STL/CLR)

paires : : second_type (STL/CLR)