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/유틸리티 >
네임 스페이스: cliext