Imposta una nuova associazione chiave/valore nel dizionario.
Sintassi |
void set(const string &in key, const ?&in value) void set(const string &in key, const int64 &in value) void set(const string &in key, const double &in value) |
---|---|
key |
Chiave per l'associazione |
value |
Valore sorgente per l'associazione |
Note |
Una eventuale associazione con la stessa chiave viene sovra-scritta automaticamente con quella nuova. |
Esempio di utilizzo:
class MyObject { MyObject() { this.age = 0; this.credits = 0; }
MyObject(string name, int age, int credits = 0) { this.name = name; this.age = age; this.credits = credits; }
string name; uint age; uint credits; }
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));
|