Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Classes  ·  Annotées  ·  Hiérarchie  ·  Fonctions  ·  Structure  · 

QValueStack Class Reference


The QValueStack class is a value based template class that provides a stack. More...

#include <qvaluestack.h>

Inherits QValueList.

List of all member functions.

Public Members


Detailed Description

The QValueStack class is a value based template class that provides a stack.

Define a template instance QValueStack<X> to create a stack of values which all have the class X. Please notice that QValueStack does not store pointers to the members of the stack. It holds a copy of every member. That is the reason why this kind of classes are called "value based" while QStack, QList and QDict are "reference 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(). Furthermore, top() provides access to the topmost item without removing it.

Example:

    #include <qvaluestack.h>
    #include <stdio.h>

    void main()
    {
        QValueStack<int> stack;
        stack.push( 1 );
        stack.push( 2 );
        stack.push( 3 );
        while ( !stack.isEmpty() )
                printf("pop item %d\n", stack.pop() );
  }

Program output:

        pop item 3;
        pop item 2;
        pop item 1;

Technically, QValueStack is a specialized QValueList provided for convenience. All of QValueList's functionality applies also to QStack, for example the facility to iterate over all elements using QValueStack::Iterator. See QValueListIterator for further details.

Some classes can not 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

  • a copy constructor,
  • an assignment operator and
  • a default constructor, i.e. a constructor that does not take any arguments.

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.


Member Function Documentation

QValueStack::QValueStack ()

Constructs an empty stack.

QValueStack::~QValueStack ()

Destroys the stack. References to the values in the stack and all iterators of this stack become invalidated. Since QValueStack is highly tuned for performance you wont see warnings if you use invalid iterators, because it is impossible for an iterator to check wether it is valid or not.

T QValueStack::pop ()

Removes the top item from the stack and returns it.

See also top() and push().

void QValueStack::push ( const T & d )

Adds an element to the top of the stack. Last in, first out.

This function is equivalent to append()

See also pop() and top().

T& QValueStack::top ()

Returns a reference to the top item of the stack or the item referenced by end() if no such item exists. Please note that you may not change the value the end() Iterator is pointing to.

This function is equivalent to last().

See also pop(), push() and QValueList::fromLast().

const T& QValueStack::top () const

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().


Search the documentation, FAQ, qt-interest archive and more (uses www.trolltech.com):


This file is part of the Qt toolkit, copyright © 1995-2005 Trolltech, all rights reserved.

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 64
  2. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  3. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  4. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  5. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  6. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
  7. La rubrique Qt a besoin de vous ! 1
Page suivante

Le blog Digia au hasard

Logo

Déploiement d'applications Qt Commercial sur les tablettes Windows 8

Le blog Digia est l'endroit privilégié pour la communication sur l'édition commerciale de Qt, où des réponses publiques sont apportées aux questions les plus posées au support. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

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 2.3
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 !
 
 
 
 
Partenaires

Hébergement Web