Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions |
The TQValueStack class is a value-based template class that provides a stack. More...
All the functions in this class are reentrant when TQt is built with thread support.
#include <ntqvaluestack.h>
Inherits TQValueList<T>.
Define a template instance TQValueStack<X> to create a stack of values that all have the class X. TQValueStack is part of the TQt Template Library.
Note that TQValueStack does not store pointers to the members of the stack; it holds a copy of every member. That is why these kinds of classes are called "value based"; TQPtrStack, TQPtrList, TQDict, etc., are "pointer based".
A stack is a last in, first out (LIFO) structure. Items are added to the top of the stack with push() and retrieved from the top with pop(). The top() function provides access to the topmost item without removing it.
Example:
TQValueStack<int> stack; stack.push( 1 ); stack.push( 2 ); stack.push( 3 ); while ( ! stack.isEmpty() ) cout << "Item: " << stack.pop() << endl; // Output: // Item: 3 // Item: 2 // Item: 1
TQValueStack is a specialized TQValueList provided for convenience.
All of TQValueList's functionality also applies to TQPtrStack, for
example the facility to iterate over all elements using
TQValueStack Some classes cannot be used within a TQValueStack, for example
everything derived from TQObject and thus all classes that
implement widgets. Only values can be used in a TQValueStack. To
qualify as a value, the class must provide
Note that C++ defaults to field-by-field assignment operators and
copy constructors if no explicit version is supplied. In many
cases this is sufficient.
See also TQt Template Library Classes, Implicitly and Explicitly Shared Classes, and Non-GUI Classes.
Constructs an empty stack.
Destroys the stack. References to the values in the stack and all
iterators of this stack become invalidated. Because TQValueStack is
highly tuned for performance, you won't see warnings if you use
invalid iterators because it is impossible for an iterator to
check whether or not it is valid.
Removes the top item from the stack and returns it.
Adds element, d, to the top of the stack. Last in, first out.
This function is equivalent to append().
Returns a reference to the top item of the stack or the item
referenced by end() if no such item exists. Note that you must not
change the value the end() iterator points to.
This function is equivalent to last().
See also pop(), push(), and TQValueList::fromLast().
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
Returns a reference to the top item of the stack or the item
referenced by end() if no such item exists.
This function is equivalent to last().
See also pop(), push(), and TQValueList::fromLast().
This file is part of the TQt toolkit.
Copyright © 1995-2007
Trolltech. All Rights Reserved.
Member Function Documentation
TQValueStack::TQValueStack ()
TQValueStack::~TQValueStack ()
T TQValueStack::pop ()
void TQValueStack::push ( const T & d )
T & TQValueStack::top ()
const T & TQValueStack::top () const
Copyright © 2007
Trolltech Trademarks