Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Make a pair from a pair of values.
template<typename Value1,
typename Value2>
pair<Value1, Value2> make_pair(Value1 first, Value2 second);
Parameters
Value1
The type of the first wrapped value.Value2
The type of the second wrapped value.first
First value to wrap.second
Second value to wrap.
Remarks
The template function returns pair<Value1, Value2>(first, second). You use it to construct a pair<Value1, Value2> object from a pair of values.
Example
// 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);
}
[x, 3] [y, 4]
Requirements
Header: <cliext/utility>
Namespace: cliext