Freigeben über


stack::size

Gibt die Anzahl der Elemente im Stapel zurück.

size_type size( ) const;

Rückgabewert

Die aktuelle Länge des Stapels.

Beispiel

// stack_size.cpp
// compile with: /EHsc
#include <stack>
#include <iostream>

int main( )
{
   using namespace std;
   stack <int> s1, s2;
   stack <int>::size_type i;

   s1.push( 1 );
   i = s1.size( );
   cout << "The stack length is " << i << "." << endl;

   s1.push( 2 );
   i = s1.size( );
   cout << "The stack length is now " << i << "." << endl;
}
  

Anforderungen

Stapel Header: <>

Namespace: std

Siehe auch

Referenz

stack-Klasse

stack::size (STL-Beispiele)

Standardvorlagenbibliothek