System::Collections::Generic::Dictionary classe
Contenuti
[
Nascondere
]Dictionary class
Dichiarazione in avanti della 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)>>
| Parametro | Descrizione |
|---|---|
| TKey | Tipo di chiave. |
| TValue | Tipo valore. |
Nested classes
- Class Enumerator
Metodi
| Metodo | Descrizione |
|---|---|
| Dictionary() | Crea un dizionario vuoto. |
| Dictionary(const map_t&) | Copia i dati dalla mappa. |
| Dictionary(int) | Sovraccarico che corrisponde alla creazione di un dizionario pre-allocato; in realtà non effettua alcuna allocazione. |
| Dictionary(const SharedPtr<IDictionary<TKey, TValue>>&) | Costruttore di copia. |
| Dictionary(const SharedPtr<IDictionary<TKey, TValue>>&, const SharedPtr<IEqualityComparer<TKey>>&) | Costruttore di copia. |
| Dictionary(const SharedPtr<IEqualityComparer<TKey>>&) | Crea un dizionario vuoto. |
| Dictionary(int, const SharedPtr<IEqualityComparer<TKey>>&) | Crea un dizionario vuoto. |
| GetEnumerator() override | Crea un oggetto enumeratore. |
Typedefs
| Typedef | Descrizione |
|---|---|
| IEnumerablePtr | Puntatore all’interfaccia enumerabile. |
| IEnumeratorPtr | Puntatore all’enumeratore. |
| KeyCollection | Informazioni RTTI. |
| KVPair | Tipo di coppia chiave-valore. |
| map_t | Tipo di dato sottostante. |
| Ptr | Tipo puntatore. |
| ValueCollection | Collezione di valori da estrarre. |
Osservazioni
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()
{
// Crea l'istanza della classe Dictionary.
auto dictionary = MakeObject<Dictionary<int, String>>();
// Riempi il dizionario.
dictionary->Add(0, u"Foo");
dictionary->Add(1, u"Bar");
dictionary->Add(2, u"Baz");
// Stampa gli elementi del dizionario.
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
*/
Vedi anche
- Class BaseDictionary
- Namespace System::Collections::Generic
- Library Aspose.Font for C++