Rimozione di una associazione chiave/valore dal dizionario.
Sintassi |
bool remove(const string &in) |
---|---|
key |
Chiave per l'associazione |
Risultato |
Rende true se associazione trovata e rimossa, false altrimenti |
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));
bool f1 = objects.remove("jerry"); /* Rende valore true */ bool f2 = objects.remove("any-other"); /* Rende valore false */ |