构造函数:
queue q;//默认queue(const queue &que);//拷贝赋值操作:
queue& operator=(const queue &que);//重载等号操作符数据存取:
push(ele);//向队尾顶添加元素pop();//从队头移除一个元素back();//返回最后一个元素front();//返回第一个元素大小操作:
empty();//判断是否为空size();//返回大小 #include<iostream> #include<queue> using namespace std; void test() { queue<int>q; q.push(10); q.push(20); q.push(30); q.push(40); while (!empty(q)) { cout << q.front() << " "; q.pop(); } cout << endl; } int main() { test(); system("pause"); return 0; }