Reference
C Library
IOstream Library
Strings library
STL Containers
STL Algorithms
Miscellaneous
STL Containers
bitset
deque
list
map
multimap
multiset
priority_queue
queue
set
stack
vector
stack
comparison operators
stack::stack
member functions:
stack::empty
stack::pop
stack::push
stack::size
stack::top


stack::empty

public member function
bool empty ( ) const;

Test whether container is empty

Returns whether the stack is empty, i.e. whether its size is 0.

This member function effectively calls the member with the same name in the underlying container object.

Parameters

none

Return Value

true if the container size is 0, false otherwise.

Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// stack::empty
#include <iostream>
#include <stack>
using namespace std;
int main ()
{
  stack<int> mystack;
  int sum (0);
  for (int i=1;i<=10;i++) mystack.push(i);
  while (!mystack.empty())
  {
     sum += mystack.top();
     mystack.pop();
  }
  cout << "total: " << sum << endl;
  
  return 0;
}

The example initializes the content of the stack to a sequence of numbers (form 1 to 10). It then pops the elements one by one until it is empty and calculates their sum.

Output:
total: 55

Complexity

Constant.

See also