make_pair (STL Samples)
Visual C++ で make_pair の標準テンプレート ライブラリ関数を使用する方法に (STL) ついて説明します。
template<class first, class second> inline
pair<first,
second> make_pair(
const first& _X,
const second& _Y
)
解説
[!メモ]
プロトタイプのクラスやパラメーター名はヘッダー ファイルのバージョンと一致しない。ただし読みやすさが向上するように変更されました。
make_pair STL 関数は2 種類の一つのデータ要素のペアを含む構造体を作成します。
使用例
// 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;
}
出力
18 3.14
10 1
必要条件
ヘッダー : <utility>