cpp/string/basic string/begin: differenze tra le versioni
Da cppreference.com.
P12 (discussione | contributi) m una revisione importata: Translate from the English version |
m r2.7.3) (Bot: Aggiungo de, en, es, fr, zh; tolgo it |
||
| Riga 30: | Riga 30: | ||
{{dcl list end}} | {{dcl list end}} | ||
[[ | [[ | ||
:cpp/string/basic string/begin]] | |||
[[ja:cpp/string/basic string/begin]] | [[ja:cpp/string/basic string/begin]] | ||
[[pl:cpp/string/basic string/begin]] | [[pl:cpp/string/basic string/begin]] | ||
[[pt:cpp/string/basic string/begin]] | [[pt:cpp/string/basic string/begin]] | ||
[[ru:cpp/string/basic string/begin]] | [[ru:cpp/string/basic string/begin]] | ||
Versione delle 19:02, 2 nov 2012
|
|
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
<metanoindex/>
iterator begin(); |
||
const_iterator begin() const; |
||
const_iterator cbegin() const; |
(dal C++11) | |
Restituisce un iteratore al primo carattere della stringa.
Original:
Returns an iterator to the first character of the string.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Parametri
(Nessuno)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Valore di ritorno
iteratore al primo carattere
Original:
iterator to the first character
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Complessità
Constant
Original:
Constant
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.