Udostępnij za pośrednictwem


stack::empty

Testy, jeśli stos jest pusty.

bool empty( ) const;

Wartość zwracana

TRUE Jeśli stos jest pusty; FALSE Jeśli stos jest niepusty.

Przykład

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

int main( )
{
   using namespace std;
   // Declares stacks with default deque base container
   stack <int> s1, s2;

   s1.push( 1 );

   if ( s1.empty( ) )
      cout << "The stack s1 is empty." << endl;
   else
      cout << "The stack s1 is not empty." << endl;

   if ( s2.empty( ) )
      cout << "The stack s2 is empty." << endl;
   else
      cout << "The stack s2 is not empty." << endl;
}
  
  

Wymagania

Nagłówek: <stack>

Obszar nazw: std

Zobacz też

Informacje

stack Class

stack::top i stack::empty

Standardowa biblioteka szablonu