QValueStack Class ReferenceThe QValueStack class is a value-based template class that provides a stack. More... All the functions in this class are reentrant when Qt is built with thread support. #include <qvaluestack.h> Inherits QValueList<T>. Public Members
Detailed DescriptionThe QValueStack class is a value-based template class that provides a stack.
Define a template instance QValueStack<X> to create a stack of values that all have the class X. QValueStack is part of the Qt Template Library. Note that QValueStack 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"; QPtrStack, QPtrList, QDict, 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: QValueStack<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 QValueStack is a specialized QValueList provided for convenience.
All of QValueList's functionality also applies to QPtrStack, for
example the facility to iterate over all elements using
QValueStack Some classes cannot be used within a QValueStack, for example
everything derived from QObject and thus all classes that
implement widgets. Only values can be used in a QValueStack. 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 Qt 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 QValueStack 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 QValueList::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 QValueList::fromLast().
This file is part of the Qt toolkit.
Copyright © 1995-2003
Trolltech. All Rights Reserved. |
Publicité
Best OfActualités les plus luesSemaine
Mois
Année
Le Qt Quarterly au hasardDes apparences personnalisées utilisant les feuilles de styleQt Quarterly est la revue trimestrielle proposée par Nokia et à destination des développeurs Qt. Ces articles d'une grande qualité technique sont rédigés par des experts Qt. Lire l'article.
CommunautéRessources
Liens utilesContact
Qt dans le magazine |
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. | Qt 3.2 | |
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD. | ||
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP ! |
Copyright © 2000-2012 - www.developpez.com