QStack Class

The QStack class is a template class that provides a stack. More...

Header: #include <QStack>
qmake: QT += core
Inherits: QVector

Note: All functions in this class are reentrant.

Public Functions

T pop()
void push(const T &t)
void swap(QStack<T> &other)
T &top()
const T &top() const
  • 96 public functions inherited from QVector

Additional Inherited Members

  • 4 public types inherited from QVector
  • 2 static public members inherited from QVector

Detailed Description

The QStack class is a template class that provides a stack.

QStack<T> is one of Qt's generic container classes. It implements a stack data structure for items of a same type.

A stack is a last in, first out (LIFO) structure. Items are added to the top of the stack using push() and retrieved from the top using pop(). The top() function provides access to the topmost item without removing it.

Example:


      QStack<int> stack;
      stack.push(1);
      stack.push(2);
      stack.push(3);
      while (!stack.isEmpty())
          cout << stack.pop() << endl;

The example will output 3, 2, 1 in that order.

QStack inherits from QVector. All of QVector's functionality also applies to QStack. For example, you can use isEmpty() to test whether the stack is empty, and you can traverse a QStack using QVector's iterator classes (for example, QVectorIterator). But in addition, QStack provides three convenience functions that make it easy to implement LIFO semantics: push(), pop(), and top().

QStack's value type must be an assignable data type. This covers most data types that are commonly used, but the compiler won't let you, for example, store a QWidget as a value; instead, store a QWidget *.

See also QVector and QQueue.

Member Function Documentation

T QStack::pop()

void QStack::push(const T &t)

void QStack::swap(QStack<T> &other)

T &QStack::top()

const T &QStack::top() const