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

empty cppreference.com
cppreference.com
Jmenn prostory
Varianty

empty

Z cppreference.com
<tbody> </tbody>
bool empty() const;

Funkce empty() vrac, jestli je zsobnk przdn.

Pklad

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

Vstup:

5
4
3
2
1


Pbuzn tmata: size


Web Proxy Viewer  |  New URL  |  Original Page