共用方式為


stack::size

傳回的項目數目是在堆疊上。

size_type size( ) const;

傳回值

堆疊上的目前長度。

範例

// 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;
}
  
  

需求

標題: <stack>

命名空間: std

請參閱

參考

stack Class

stack::size (STL Samples)

標準樣板程式庫