make_pair (STL Samples)
Nasıl kullanılacağı gösterilmiştir make_pair Visual C++ standart şablon kitaplığı (stl) işlevi.
template<class first, class second> inline
pair<first,
second> make_pair(
const first& _X,
const second& _Y
)
Notlar
Not
Prototip sınıfı/parametre adları üstbilgi dosyasında sürüm eşleşmiyor.Bazıları, okumayı kolaylaştırmak için değiştirildi.
make_pair stl işlevi, herhangi bir türdeki iki veri öğeleri içeren bir çifti yapısı oluşturur.
Örnek
// 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;
}
Çıktı
18 3.14
10 1
Gereksinimler
Başlık: <utility>