随笔分类 -  c++

摘要:pair基本用法 pair<string, int> p1("hello world", 233); cout << p1.first << " " << p1.second; p1 = make_pair("lala", 322); pair 其他使用 重载pair的加减运算符 // 加法 tem 阅读全文
posted @ 2022-09-06 14:37 Timingup 阅读(102) 评论(0) 推荐(0)