// 对组(pair) // 将一对值组合成一个值,这一对值可以具有不同的数据类型,两个值可 // 以分别用 pair 的两个公有属性 first 和 second 访问。 // 类模板:template class pair // 用法一: // pair pair1(string("name"), 20); // cout << pair1.first << endl; // cout << pair1.second << endl; // 用法二: // pair pair2 = make_pair("name", 30); // cout << pair2.first << endl; // cout << pair2.second << endl; // 用法三: // pair pair3 = pair2; // 拷贝构造函数 // cout << pair3.first << endl; // cout << pair3.second << endl; // 如: #include #include #include using namespace std; int main() { pair p1(1, "disen"); pair p2 = make_pair(2, "lucy"); cout << "id = " << p1.first << ", name = " << p1.second << endl; cout << "id = " << p2.first << ", name = " << p2.second << endl; return 0; }