다음을 통해 공유


make_pair (STL Samples)

사용 하는 방법을 보여 줍니다 있는 make_pair Visual C++에서 표준 템플릿 라이브러리 (STL) 함수입니다.

template<class first, class second> inline
   pair<first,
      second> make_pair(
      const first& _X,
      const second& _Y
   )

설명

[!참고]

프로토타입에 클래스/매개 변수 이름은 헤더 파일에서 버전이 일치 하지 않습니다.일부 가독성을 높이기 위해 수정 되었습니다.

make_pair STL 함수 모든 형식의 두 데이터 요소를 포함 하는 쌍 구조를 만듭니다.

예제

// mkpair.cpp
// compile with: /EHsc
// Illustrates how to use the make_pair function.
//
// Functions: make_pair - creates an object pair containing two data
//                        elements of any type.

#include <utility>
#include <iostream>

using namespace std;

/* STL pair data type containing int and float
*/

typedef struct pair<int,float> PAIR_IF;

int main(void)
{
  PAIR_IF pair1=make_pair(18,3.14f);

  cout << pair1.first << "  " << pair1.second << endl;
  pair1.first=10;
  pair1.second=1.0f;
  cout << pair1.first << "  " << pair1.second << endl;
}

Output

18  3.14
10  1

요구 사항

헤더: <utility>

참고 항목

개념

표준 템플릿 라이브러리 샘플