1,pair和make_pair的区别
std::pair<int, float>(1, 1.1);
std::make_pair(1, 1.1);
C++ 函数
原文:https://www.cnblogs.com/kai-xuan/p/14607264.html