front
语法:
1 |
reference front(); |
front()函数返回一个引用,指向双向队列的头部。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
源代码 /** * Returns a read/write reference to the data at the first element of the * %deque. */ reference front() { return *this->_M_impl._M_start; } /** * Returns a read-only (constant) reference to the data at the first * element of the %deque. */ const_reference front() const { return *this->_M_impl._M_start; } |
测试代码:
测试结果:
1
请按任意键继续. . .
《双向队列front函数运用》上有1条评论
评论已关闭。