#include #include using namespace std; int main() { // pair 是一个模板类,有两个模板参数, // 用于存储两个数据,可以分别指定两个数据的类型 pair p1(1, "张三"); return 0; }