Operatore di assegnazione stringa.
Sintassi |
string &operator=(const string &in source) string &operator=(double source) string &operator=(float source) string &operator=(int64 source) string &operator=(uint64 source) string &operator=(bool source) |
---|---|
source |
Valore sorgente |
Risultato |
Rende riferimento a stringa risultante |
Esempio di utilizzo:
string source("valore per stringa 1");
string target1 = source; string target2 = "valore per stringa 3"; string target3 = 1000; /* targe3 contiene "1000" */ string target4 = 3.14; /* target4 contiene "3.14" */ |