queue::front

返回对第一个元素位于队列前面的。

reference front( );
const_reference front( ) const;

返回值

队列中的第一个元素。如果队列为空,则返回值是未定义的。

备注

如果 front 的返回值赋给 const_reference,不能修改队列对象。如果 front 的返回值赋给 reference,可以修改队列对象。

成员函数返回 reference 到控件序列的第一个元素,必须为非null。

当编译_SECURE_SCL 1时,一个运行时将发生错误,如果尝试访问在空的队列的组件。有关更多信息,请参见经过检查的迭代器

示例

// queue_front.cpp
// compile with: /EHsc
#include <queue>
#include <iostream>

int main() {
   using namespace std;
   queue <int> q1;

   q1.push( 10 );
   q1.push( 20 );
   q1.push( 30 );

   queue <int>::size_type i;
   i = q1.size( );
   cout << "The queue length is " << i << "." << endl;

   int& ii = q1.back( );
   int& iii = q1.front( );

   cout << "The integer at the back of queue q1 is " << ii 
        << "." << endl;
   cout << "The integer at the front of queue q1 is " << iii 
        << "." << endl;
}

Output

The queue length is 3.
The integer at the back of queue q1 is 30.
The integer at the front of queue q1 is 10.

要求

标头: <queue>

命名空间: std

请参见

参考

queue Class

queue Functions

标准模板库