Abilitare JavaScript per vedere questo sito.

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" */

 

  

Keyboard Navigation

F7 for caret browsing
Hold ALT and press letter

This Info: ALT+q
Page Header: ALT+h
Topic Header: ALT+t
Topic Body: ALT+b
Contents: ALT+c
Search: ALT+s
Exit Menu/Up: ESC