Classe System::Collections::Generic::Dictionary
Contenu
[
Cacher
]Dictionary class
Déclaration anticipée de la classe Dictionary.
template<typename TKey,typename TValue>class Dictionary : public System::Collections::Generic::BaseDictionary<std::unordered_map<TKey, TValue, EqualityComparerHashAdapter<TKey>, EqualityComparerAdapter<TKey>, ASPOSE_MAP_ALLOCATOR_TYPE(TKey, TValue)>>
| Paramètre | Description |
|---|---|
| TKey | Type de clé. |
| TValue | Type valeur. |
Nested classes
- Class Enumerator
Méthodes
| Méthode | Description |
|---|---|
| Dictionary() | Crée un dictionnaire vide. |
| Dictionary(const map_t&) | Copie les données depuis la map. |
| Dictionary(int) | Surcharge correspondant à la création d’un dictionnaire pré‑alloué ; ne fait en fait aucune allocation. |
| Dictionary(const SharedPtr<IDictionary<TKey, TValue>>&) | Constructeur de copie. |
| Dictionary(const SharedPtr<IDictionary<TKey, TValue>>&, const SharedPtr<IEqualityComparer<TKey>>&) | Constructeur de copie. |
| Dictionary(const SharedPtr<IEqualityComparer<TKey>>&) | Crée un dictionnaire vide. |
| Dictionary(int, const SharedPtr<IEqualityComparer<TKey>>&) | Crée un dictionnaire vide. |
| GetEnumerator() override | Crée un objet énumérateur. |
Typedefs
| Typedef | Description |
|---|---|
| IEnumerablePtr | Pointeur vers l’interface énumérable. |
| IEnumeratorPtr | Pointeur vers l’énumérateur. |
| KeyCollection | Informations RTTI. |
| KVPair | Type de paire clé-valeur. |
| map_t | Type de données sous-jacent. |
| Ptr | Type de pointeur. |
| ValueCollection | Collection de valeurs à extraire. |
Remarques
Dictionary that maps values to keys. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.
#include <system/collections/dictionary.h>
#include <system/smart_ptr.h>
using namespace System;
using namespace System::Collections::Generic;
int main()
{
// Créer l'instance de la classe Dictionary.
auto dictionary = MakeObject<Dictionary<int, String>>();
// Remplir le dictionnaire.
dictionary->Add(0, u"Foo");
dictionary->Add(1, u"Bar");
dictionary->Add(2, u"Baz");
// Imprimer les éléments du dictionnaire.
for (const auto &pair: dictionary)
{
std::cout << pair.get_Key() << " - " << pair.get_Value() << std::endl;
}
return 0;
}
/*
This code example produces the following output:
0 - Foo
1 - Bar
2 - Baz
*/
Voir aussi
- Class BaseDictionary
- Namespace System::Collections::Generic
- Library Aspose.Font for C++