deque::front
傳回第一個項目的參考在雙向佇列。
reference front( );
const_reference front( ) const;
傳回值
如果兩個佇列是空的,則會傳回未定義。
備註
如果傳回值 front 給 const_reference,無法修改雙向佇列物件。 如果 front 的傳回值指派給 reference,可以修改雙向佇列物件。
在以 _SECURE_SCL 1 時,執行時會發生錯誤,如果您嘗試存取的方法雙向佇列的項目。如需詳細資訊,請參閱已檢查的迭代器。
範例
// deque_front.cpp
// compile with: /EHsc
#include <deque>
#include <iostream>
int main( )
{
using namespace std;
deque <int> c1;
c1.push_back( 10 );
c1.push_back( 11 );
int& i = c1.front( );
const int& ii = c1.front( );
cout << "The first integer of c1 is " << i << endl;
i++;
cout << "The second integer of c1 is " << ii << endl;
}
需求
標頭: <deque>
命名空間: std