QPair 的用法_qpair t1 first t2 second;-CSDN博客
C++ pair的基本用法总结(整理)_c++ pair用法-CSDN博客
#include <utility> #include <QDebug> std::pair<int,int> p1; p1.first = 1; p1.second = 2; qDebug()<<p1.first<<" "<<p1.second;