queue::size
Zwraca liczbę elementów w kolejce.
size_type size( ) const;
Wartość zwracana
Bieżąca długość kolejki.
Przykład
// queue_size.cpp
// compile with: /EHsc
#include <queue>
#include <iostream>
int main( )
{
using namespace std;
queue <int> q1, q2;
queue <int>::size_type i;
q1.push( 1 );
i = q1.size( );
cout << "The queue length is " << i << "." << endl;
q1.push( 2 );
i = q1.size( );
cout << "The queue length is now " << i << "." << endl;
}
Wymagania
Nagłówek: <queue>
Obszar nazw: std