[ Web Proxy ]
URL:
Viewing: https://cs.cppreference.com/cpp/container/stack/size [Back]  [Original]

size cppreference.com
cppreference.com
Jmenn prostory
Varianty

size

Z cppreference.com
<tbody> </tbody>
size_type size() const;

Funkce size() vrac poet prvk v zsobnku.

Pklad

stack<int> s;
for( int i = 0; i < 5; i++ )
{
   s.push(i);
}
while( s.size() != 0 )
{
   cout << s.top() << endl;
   s.pop();
}

Vstup:

5
4
3
2
1

Pbuzn tmata: empty


Web Proxy Viewer  |  New URL  |  Original Page