C++ 标准模板库 (STL) 中的 Pair


在本教程中,我们将讨论一个程序来理解 C++ 标准模板库中的 pair。

Pair 是 utility 标头中定义的一个容器,它包含两个值。它用于组合两个值并关联它们,即使它们是不同类型的。

示例

 实时演示

#include <iostream>
#include <utility>
using namespace std;
int main(){
   //initializing a pair
   pair <int, char> PAIR1 ;
   PAIR1.first = 100;
   PAIR1.second = 'G' ;
   cout << PAIR1.first << " " ;
   cout << PAIR1.second << endl ;
   return 0;
}

输出

100 G

更新于: 14-Apr-2020

345 次浏览

启动你的 职业生涯

完成课程,获得认证

开始学习
广告