我的代码大致如下:
#include <queue>
#include <iostream>
using namespace std;
int main() {
priority_queue <String> pq;
otherClass.qPusher();
pq.pop();
}
qPusher方法如何访问priority_queue pq? 我试图将pq的引用传递给qPusher,但我似乎无法使语法正确。有谁知道怎么做?
答案 0 :(得分:0)
您需要将队列传递给类(可能作为构造函数参数,可能作为参考,至少作为指针)。