Q3IntDict Class ReferenceThe Q3IntDict class is a template class that provides a dictionary based on long keys. More... #include <Q3IntDict> This class is part of the Qt 3 support library. It is provided to keep old source code working. We strongly advise against using it in new code. See Porting to Qt 4 for more information. Inherits: Q3PtrCollection. Public Functions
Reimplemented Public Functions
Protected Functions
Detailed DescriptionThe Q3IntDict class is a template class that provides a dictionary based on long keys. Q3IntDict is implemented as a template class. Define a template instance Q3IntDict<X> to create a dictionary that operates on pointers to X (X*). A dictionary is a collection of key-value pairs. The key is an long used for insertion, removal and lookup. The value is a pointer. Dictionaries provide very fast insertion and lookup. Example: Q3IntDict<QLineEdit> fields; // long int keys, QLineEdit* values for ( int i = 0; i < 3; i++ ) fields.insert( i, new QLineEdit( this ) ); fields[0]->setText( "Homer" ); fields[1]->setText( "Simpson" ); fields[2]->setText( "45" ); Q3IntDictIterator<QLineEdit> it( fields ); for ( ; it.current(); ++it ) cout << it.currentKey() << ": " << it.current()->text() << endl; for ( int i = 0; i < 3; i++ ) cout << fields[i]->text() << " "; // Prints "Homer Simpson 45" cout << endl; fields.remove( 1 ); // Does not delete the line edit for ( int i = 0; i < 3; i++ ) if ( fields[i] ) cout << fields[i]->text() << " "; // Prints "Homer 45" See Q3Dict for full details, including the choice of dictionary size, and how deletions are handled. See also Q3IntDictIterator, Q3Dict, Q3AsciiDict, and Q3PtrDict. Member Function Documentation
|
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.8 | |
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