queue::empty
Testy, jeśli kolejka jest pusta.
bool empty( ) const;
Wartość zwracana
TRUE Jeśli kolejka jest pusta. FALSE Jeśli kolejka jest niepusty.
Przykład
// queue_empty.cpp
// compile with: /EHsc
#include <queue>
#include <iostream>
int main( )
{
using namespace std;
// Declares queues with default deque base container
queue <int> q1, q2;
q1.push( 1 );
if ( q1.empty( ) )
cout << "The queue q1 is empty." << endl;
else
cout << "The queue q1 is not empty." << endl;
if ( q2.empty( ) )
cout << "The queue q2 is empty." << endl;
else
cout << "The queue q2 is not empty." << endl;
}
Wymagania
Nagłówek: <queue>
Obszar nazw: std