pair 結構
提供將兩個物件為單一物件的結構。
template<class Type1, class Type2>
struct pair
{
typedef Type1 first_type;
typedef Type2 second_type;
Type1 first;
Type2 second;
pair( );
pair(
const Type1& __Val1,
const Type2& __Val2
);
template<class Other1, class Other2>
pair(
const pair<Other1, Other2>& _Right
);
template<class Other1, class Other2>
pair(
Other1&& _Val1, Other2&& _Val2
);
};
參數
_Val1
初始化 pair的第一個元素值。_Val2
初始化 pair的第二個元素值。_Right
值會使用初始化另一組項目的配對。
傳回值
第一個 (預設) 建構函式初始化對的第一個元素為型別 Type1 預設和第二個元素為型別 Type2預設。
第二個建構函式初始化對的第一個項目為 _Val1 、分和秒為 _Val2。
第三個 (範本) 建構函式初始化對的第一個元素為 _Right。first 和秒為 _Right。second。
使用 右值參考宣告子:&&,第四個建構函式初始化對的第一個項目為 _Val1 、分和秒為 _Val2 。
備註
範本結構儲存一組型別 Type1 和 Type2物件,分別。 這個型別是 first_type 當做樣板參數 Type1 和型別 second_type 與樣板參數 Type2的相同。 Type1 和 Type2 都必須提供預設建構函式、單一引數建構函式和只能有一個解構函式。 因為這個型別宣告為 struct 而不是 class, pair 型別的所有成員都是公用的。 一組的兩個最常見的用法是做為傳回兩個值之函式的傳回型別,而且,當有一個索引鍵和一個實值型別與每個項目關聯的容器中的項目將 對應類別 和 多重對應類別 。 後者滿足相關容器的需求和表單 pair<const key_type, mapped_type的實值型別>。
範例
// utility_pair.cpp
// compile with: /EHsc
#include <utility>
#include <map>
#include <iomanip>
#include <iostream>
int main( )
{
using namespace std;
// Using the constructor to declare and initialize a pair
pair <int, double> p1 ( 10, 1.1e-2 );
// Compare using the helper function to declare and initialize a pair
pair <int, double> p2;
p2 = make_pair ( 10, 2.22e-1 );
// Making a copy of a pair
pair <int, double> p3 ( p1 );
cout.precision ( 3 );
cout << "The pair p1 is: ( " << p1.first << ", "
<< p1.second << " )." << endl;
cout << "The pair p2 is: ( " << p2.first << ", "
<< p2.second << " )." << endl;
cout << "The pair p3 is: ( " << p3.first << ", "
<< p3.second << " )." << endl;
// Using a pair for a map element
map <int, int> m1;
map <int, int>::iterator m1_Iter;
typedef pair <int, int> Map_Int_Pair;
m1.insert ( Map_Int_Pair ( 1, 10 ) );
m1.insert ( Map_Int_Pair ( 2, 20 ) );
m1.insert ( Map_Int_Pair ( 3, 30 ) );
cout << "The element pairs of the map m1 are:";
for ( m1_Iter = m1.begin( ); m1_Iter != m1.end( ); m1_Iter++ )
cout << " ( " << m1_Iter -> first << ", "
<< m1_Iter -> second << " )";
cout << "." << endl;
// Using pair as a return type for a function
pair< map<int,int>::iterator, bool > pr1, pr2;
pr1 = m1.insert ( Map_Int_Pair ( 4, 40 ) );
pr2 = m1.insert ( Map_Int_Pair (1, 10 ) );
if( pr1.second == true )
{
cout << "The element (4,40) was inserted successfully in m1."
<< endl;
}
else
{
cout << "The element with a key value of\n"
<< " ( (pr1.first) -> first ) = " << ( pr1.first ) -> first
<< " is already in m1,\n so the insertion failed." << endl;
}
if( pr2.second == true )
{
cout << "The element (1,10) was inserted successfully in m1."
<< endl;
}
else
{
cout << "The element with a key value of\n"
<< " ( (pr2.first) -> first ) = " << ( pr2.first ) -> first
<< " is already in m1,\n so the insertion failed." << endl;
}
}
需求
標題: <公用程式>
命名空間: std