Interroga la dimensione del dizionario .
Sintassi |
uint size() const |
---|---|
Risultato |
Rende la dimensione del dizionario in [associazioni] (0=vuoto) |
Esempio di utilizzo:
class MyObject { ... };
dictionary objects; objects.set("jerry", MyObject("Jerry", 54, 1000)); objects.set("david", MyObject("David", 34, 1200)); objects.set("charles", MyObject("Charles", 60, 2000)); objects.set("robert", MyObject("Robert", 56, 1900)); uint size1 = objects.size(); /* Rende valore 4 */
dictionary objects2; uint size2 = objects2.size(); /* Rende valore 0 */ |