std::basic_string::basic_string
![]() |
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. |
explicit basic_string( const Allocator& alloc = Allocator() ); |
(1) | |
basic_string( size_type count, CharT ch, |
(2) | |
basic_string( const basic_string& other, size_type pos, |
(3) | |
basic_string( const CharT* s, size_type count, |
(4) | |
basic_string( const CharT* s, const Allocator& alloc = Allocator() ); |
(5) | |
template< class InputIt > basic_string( InputIt first, InputIt last, |
(6) | |
basic_string( const basic_string& other ); |
(7) | |
basic_string( const basic_string& other, const Allocator& alloc ); |
(7) | (dal C++11) |
basic_string( basic_string&& other ) |
(8) | (dal C++11) |
basic_string( basic_string&& other, const Allocator& alloc ); |
(8) | (dal C++11) |
basic_string( std::initializer_list<CharT> init, const Allocator& alloc = Allocator() ); |
(9) | (dal C++11) |
alloc
.alloc
.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.
count
ch
di carattere.count
copies of character ch
.You can help to correct and verify the translation. Click here for instructions.
[pos, pos+count)
sottostringa di other
. Se la sottostringa richiesto dura oltre la fine della stringa, o se count == npos, la sottostringa risultante è [pos, size())
. Se pos >= other.size(), std::out_of_range viene gettato.[pos, pos+count)
of other
. If the requested substring lasts past the end of the string, or if count == npos, the resulting substring is [pos, size())
. If pos >= other.size(), std::out_of_range is thrown.You can help to correct and verify the translation. Click here for instructions.
count
primi stringa di caratteri puntato da s
. s
può contenere caratteri nulli. s
non deve essere un puntatore NULL.count
characters of character string pointed to by s
. s
can contain null characters. s
must not be a NULL pointer.You can help to correct and verify the translation. Click here for instructions.
s
. La lunghezza della stringa è determinata dal carattere nullo prima. s
non deve essere un puntatore NULL.s
. The length of the string is determined by the first null character. s
must not be a NULL pointer.You can help to correct and verify the translation. Click here for instructions.
6) Constructs the string with the contents of the range [first, last)
.
7) Copy constructor. Constructs the string with the copy of the contents of other
.
8) Move constructor. Constructs the string with the contents of other
using move semantics.
9) Constructs the string with the contents of the initializer list init
.
Indice |
[modifica] Parametri
alloc | - | allocatore da utilizzare per tutte le allocazioni di memoria di questa stringa
Original: allocator to use for all memory allocations of this string The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
count | - | dimensione della stringa risultante
Original: size of the resulting string The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
ch | - | valore per inizializzare la stringa con
Original: value to initialize the string with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
first, last | - | gamma di copiare i personaggi
Original: range to copy the characters from The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
s | - | puntatore a una stringa di caratteri use
come fonte per inizializzare la stringa con Original: pointer to a character string to use as source to initialize the string with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
other | - | un'altra stringa da usare come sorgente per inizializzare la stringa con
Original: another string to use as source to initialize the string with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
init | - | inizializzatore lista per inizializzare la stringa con
Original: initializer list to initialize the string with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Type requirements | ||
-InputIt must meet the requirements of InputIterator .
|
[modifica] Complessità
1)You can help to correct and verify the translation. Click here for instructions.
count
count
You can help to correct and verify the translation. Click here for instructions.
5) linear in length of s
first
e last
first
and last
You can help to correct and verify the translation. Click here for instructions.
other
other
You can help to correct and verify the translation. Click here for instructions.
alloc
è dato e alloc != other.get_allocator(), quindi lineare.alloc
is given and alloc != other.get_allocator(), then linear.You can help to correct and verify the translation. Click here for instructions.
init
init
You can help to correct and verify the translation. Click here for instructions.
[modifica] Esempio
This section is incomplete Reason: no example |
[modifica] Vedi anche
assegnare i caratteri in una stringa Original: assign characters to a string The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (membro pubblico funzione) | |
assegna valori alla stringa Original: assigns values to the string The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (membro pubblico funzione) |