标签:class first void div color style col oid bsp
void test01() { //构造方法 pair<int, int> p1(10, 2); cout << p1.first << p1.second << endl; pair<int, string> p2 = make_pair(10, "assd"); cout << p2.first << p2.second << endl; pair<int, string> p3 = p2; }
标签:class first void div color style col oid bsp
原文地址:https://www.cnblogs.com/likeghee/p/10180735.html