make_pair (STL/CLR)
請pair的值的配對。
template<typename Value1,
typename Value2>
pair<Value1, Value2> make_pair(Value1 first, Value2 second);
參數
Value1
第一個換行的值的型別。Value2
第二個換行的值的型別。第一個
若要自動換行的第一個值。第二個
若要自動換行的第二個值。
備註
The template function returns pair<Value1, Value2>(first, second). You use it to construct a pair<Value1, Value2> object from a pair of values.
範例
// 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/公用程式 >
Namespace: cliext