Q3PtrQueue Class Reference |
Q3PtrQueue () | |
Q3PtrQueue ( const Q3PtrQueue<type> & queue ) | |
~Q3PtrQueue () | |
bool | autoDelete () const |
type * | current () const |
type * | dequeue () |
void | enqueue ( const type * d ) |
type * | head () const |
bool | isEmpty () const |
bool | remove () |
void | setAutoDelete ( bool enable ) |
operator type * () const | |
Q3PtrQueue<type> & | operator= ( const Q3PtrQueue<type> & queue ) |
virtual void | clear () |
virtual uint | count () const |
virtual QDataStream & | read ( QDataStream & s, Q3PtrCollection::Item & item ) |
virtual QDataStream & | write ( QDataStream & s, Q3PtrCollection::Item item ) const |
The Q3PtrQueue class is a template class that provides a queue.
Q3ValueVector can be used as an STL-compatible alternative to this class.
A template instance Q3PtrQueue<X> is a queue that operates on pointers to X (X*).
A queue is a first in, first out structure. Items are added to the tail of the queue with enqueue() and retrieved from the head with dequeue(). You can peek at the head item without dequeing it using head().
You can control the queue's deletion policy with setAutoDelete().
For compatibility with the Q3PtrCollection classes, current() and remove() are provided; both operate on the head().
See also Q3PtrList and Q3PtrStack.
Creates an empty queue with autoDelete() set to FALSE.
Creates a queue from queue.
Only the pointers are copied; the items are not. The autoDelete() flag is set to FALSE.
Destroys the queue. Items in the queue are deleted if autoDelete() is TRUE.
Returns the setting of the auto-delete option. The default is FALSE.
See also setAutoDelete().
Reimplemented from Q3PtrCollection::clear().
Removes all items from the queue, and deletes them if autoDelete() is TRUE.
See also remove().
Reimplemented from Q3PtrCollection::count().
Returns the number of items in the queue.
See also isEmpty().
Returns a pointer to the head item in the queue. The queue is not changed. Returns 0 if the queue is empty.
See also dequeue() and isEmpty().
Takes the head item from the queue and returns a pointer to it. Returns 0 if the queue is empty.
See also enqueue() and count().
Adds item d to the tail of the queue.
See also count() and dequeue().
Returns a pointer to the head item in the queue. The queue is not changed. Returns 0 if the queue is empty.
See also dequeue() and isEmpty().
Returns TRUE if the queue is empty; otherwise returns FALSE.
See also count(), dequeue(), and head().
Reads a queue item, item, from the stream s and returns a reference to the stream.
The default implementation sets item to 0.
See also write().
Removes the head item from the queue, and returns TRUE if there was an item, i.e. the queue wasn't empty; otherwise returns FALSE.
The item is deleted if autoDelete() is TRUE.
See also head(), isEmpty(), and dequeue().
Sets the queue to auto-delete its contents if enable is TRUE and not to delete them if enable is FALSE.
If auto-deleting is turned on, all the items in a queue are deleted when the queue itself is deleted. This can be quite convenient if the queue has the only pointer to the items.
The default setting is FALSE, for safety. If you turn it on, be careful about copying the queue: you might find yourself with two queues deleting the same items.
See also autoDelete().
Writes a queue item, item, to the stream s and returns a reference to the stream.
The default implementation does nothing.
See also read().
Returns a pointer to the head item in the queue. The queue is not changed. Returns 0 if the queue is empty.
See also dequeue() and isEmpty().
Assigns queue to this queue and returns a reference to this queue.
This queue is first cleared and then each item in queue is enqueued to this queue. Only the pointers are copied.
Warning: The autoDelete() flag is not modified. If it is TRUE for both queue and this queue, deleting the two lists will cause double-deletion of the items.
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 4.6-snapshot | |
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