C++ pair 的使用

pair的作用

C++ 中的 std::pair 是标准模板库 (STL) 提供的一个容器,它能够存储两个不同类型的数据作为一个整体,其中first:访问 pair 的第一个元素。second:访问 pair 的第二个元素。

int main() {
    pair<string, int> p;
    //通过构造函数参数列表初始化
    p = make_pair("张三", 18);
    cout<<p.first << p.second<<endl;//打印结果 张三18
    // 初始化的时候赋值
    pair<string, int> pname("张三", 18);
    cout<<pname.first << pname.second<<endl;//打印结果 张三18
    return 0;
}

使用typedef

#include <iostream>
#include <string>
using namespace std;
typedef pair<string,int> pp;
pp p1 = make_pair("张三", 18);
pp p2("张三", 18);
int main() {
     cout<<p1.first << p1.second<<endl;
     cout<<p2.first << p2.second<<endl;
    return 0;
}

pair 用在结构体中

#include <iostream>
#include <string>
using namespace std;
struct config{
    pair<string, int> p;
    // 构造函数初始化
    config() : p{"张三", 18} {
        cout<<p.first << p.second<<endl;
    }
 };

int main() {
    config c;
    return 0;
}

还可以pair 与结构体绑定

#include <iostream>
#include <string>
using namespace std;

struct config{
    pair<string, int> p;
    // 构造函数初始化
    config() : p{"张三", 18} {
        cout<<p.first << p.second<<endl;
    }
 };

int main() {
    config c;
    // 直接访问config结构体内的pair成员
    std::cout << "Integer value: " << c.p.second << ", String value: " << c.p.first << std::endl;
    // 或者利用C++17的结构化绑定来访问
    auto &[strValue, intValue] = c.p;
    std::cout << "Integer value: " << intValue << ", String value: " << strValue << std::endl;
    return 0;
}

pair 还可以用来 拷贝、赋值和比较

std::pair<int, std::string> copyOfPair(myPair); // 拷贝构造
copyOfPair = anotherPair; // 赋值操作

if (myPair == anotherPair) { // 使用内置的等于运算符进行比较
    // ...
}
相关推荐
2401_857439692 小时前
SSM 架构下 Vue 电脑测评系统:为电脑性能评估赋能
开发语言·php
SoraLuna3 小时前
「Mac畅玩鸿蒙与硬件47」UI互动应用篇24 - 虚拟音乐控制台
开发语言·macos·ui·华为·harmonyos
xlsw_3 小时前
java全栈day20--Web后端实战(Mybatis基础2)
java·开发语言·mybatis
Dream_Snowar4 小时前
速通Python 第三节
开发语言·python
唐诺4 小时前
几种广泛使用的 C++ 编译器
c++·编译器
高山我梦口香糖5 小时前
[react]searchParams转普通对象
开发语言·前端·javascript
冷眼看人间恩怨5 小时前
【Qt笔记】QDockWidget控件详解
c++·笔记·qt·qdockwidget
信号处理学渣5 小时前
matlab画图,选择性显示legend标签
开发语言·matlab
红龙创客5 小时前
某狐畅游24校招-C++开发岗笔试(单选题)
开发语言·c++
Lenyiin5 小时前
第146场双周赛:统计符合条件长度为3的子数组数目、统计异或值为给定值的路径数目、判断网格图能否被切割成块、唯一中间众数子序列 Ⅰ
c++·算法·leetcode·周赛·lenyiin