QList <QPointF> markers;markers.append (QPointF (getLat (), getLon ()));QList <QPointF> :: iterator i;for (i = markers.begin(); i != markers.end(); ++i) std :: cout << *i << endl;给我: 错误:“ std :: cout 最佳答案 您可以使用qDebug()。QList<QPointF> markers;markers.append(getLat(), getLon());QList<QPointF>::iterator i;for (i = markers.begin(); i != markers.end(); ++i) qDebug() << *i;请记住包括QDebug:#include <QDebug>关于c++ - 如何显示存储在QList中的QPointF?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19996579/ 10-17 00:18