queue::back

返回对最后和最近添加的元素在队列中返回。

reference back( );
const_reference back( ) const;

返回值

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

备注

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

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

要求

标头: <queue>

命名空间: std

请参见

参考

queue Class

queue Functions

标准模板库