queue::front

返回到第一个元素位于队列前面的引用。

reference front( );
const_reference front( ) const;

返回值

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

备注

如果返回值 frontconst_reference,便不能再修改该对象。 如果返回值 front引用,可以修改队列对象。

成员函数返回 引用 控制到序列中的第一个元素,该元素绑定非空。

当编译用_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.

要求

页眉: <队列>

命名空间: std

请参见

参考

queue 类

queue 函数

标准模板库