共用方式為


pair::operator= (STL/CLR)

取代預存的值的配對。

    pair<Value1, Value2>% operator=(pair<Value1, Value2>% right);

參數

  • right
    若要複製的組。

備註

該成員運算子複製right物件,則會傳回*this。 您用它來取代預存的值的配對中的值的預存組一份right。

範例

// cliext_pair_operator_as.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); 
 
// assign to a new pair 
    cliext::pair<wchar_t, int> c2; 
    c2 = c1; 
    System::Console::WriteLine("[{0}, {1}]", c2.first, c2.second); 
    return (0); 
    } 
 
  

需求

標頭: < cliext/公用程式 >

Namespace: cliext

請參閱

參考

pair (STL/CLR)