Aggiungi il namespace std con la parola chiave "utilizzando " . Ad esempio, digitare :
using namespace std;
2
dichiarare una stringa , opzionalmente con un costruttore per assegnare un valore iniziale . Ad esempio, digitare :
using namespace std;
example_string stringa ;
constructor_string stringa ( . " Questo è il testo della stringa" ) ;
3
Assegnare valori alle stringhe come si farebbe con altre variabili . Le stringhe possono essere aggiunti a vicenda e assegnati utilizzando il normale + , = e + = operatori
using namespace std; .
Example_string stringa ;
constructor_string stringa ( " Questo è il testo della stringa " ) ;
example_string =" . Questo è il valore assegnato della stringa . ». ;
example_string + = " Questo testo è stato aggiunto al valore originale della stringa "
Programmazione © www.354353.com