front
语法:
1 |
reference front(); |
front() 返回第一个元素
源代码
1 2 3 4 5 6 7 8 9 10 |
/** * Returns a read/write reference to the data at the first * element of the %queue. */ reference front() { __glibcxx_requires_nonempty(); return c.front(); } |
测试代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
// 梁笔记 // https://zouzhongliang.com #include <iostream> #include <queue> using namespace std; int main() { queue<int> Qi; Qi.push(1); Qi.push(2); Qi.push(3); Qi.push(4); Qi.push(4); Qi.push(5); cout<<Qi.front()<<endl; } |
测试结果
1 |
队列不是空的 |