13 lines
258 B
C++
13 lines
258 B
C++
|
#include <iostream>
|
||
|
#include <set>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
// pair 是一个模板类,有两个模板参数,
|
||
|
// 用于存储两个数据,可以分别指定两个数据的类型
|
||
|
pair<int, string> p1(1, "张三");
|
||
|
return 0;
|
||
|
}
|