queue::back

返回到的最后一个引用和最近添加的元素位于队列返回的。

reference back( );
const_reference back( ) const;

返回值

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

备注

如果 back 的返回值赋给 const_reference,便不能再修改该对象。 如果 back 的返回值赋给 引用,则可修改队列对象。

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

示例

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

int main( ) 
{
   using namespace std;
   queue <int> q1;
   
   q1.push( 10 );
   q1.push( 11 );

   int& i = q1.back( );
   const int& ii = q1.front( );

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

Output

The integer at the back of queue q1 is 11.
The integer at the front of queue q1 is 10.

要求

页眉: <队列>

命名空间: std

请参见

参考

queue 类

queue 函数

标准模板库