标签: c++ int queue
我正在尝试将队列的第一项分配给一个int
queue<int> q; int cur = q.pop();
输入错误
Types 'int' and 'void' are not compatible
答案 0 :(得分:3)
阅读本应该告诉您的文档会有所帮助
queue<int> q; ... int cur = q.front(); q.pop();