make_pair (STL/CLR)
由一組值執行 pair 。
template<typename Value1,
typename Value2>
pair<Value1, Value2> make_pair(Value1 first, Value2 second);
參數
Value1
第一個包裝值的型別。Value2
第二個包裝值的型別。first
包裝的第一個值。第二
包裝的第二個值。
備註
樣板函式會傳回 pair<Value1, Value2>(first, second)。 您可以使用它從一組的 pair<Value1, Value2> 物件。
範例
// cliext_make_pair.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);
c1 = cliext::make_pair(L'y', 4);
System::Console::WriteLine("[{0}, {1}]", c1.first, c1.second);
return (0);
}
需求
標頭 : <cliext/utility>
命名空間: cliext