共用方式為


pair::first (STL/CLR)

第一個換行的值。

    Value1 first;

備註

物件會儲存第一個換行的值。

範例

// 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); 
    } 
 
  

需求

標頭: < cliext/公用程式 >

Namespace: cliext

請參閱

參考

pair (STL/CLR)

pair::first_type (STL/CLR)

pair::second (STL/CLR)

pair::second_type (STL/CLR)