std::basic_string::basic_string
Da cppreference.com.
|
|
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/>
<tbody> </tbody> explicit basic_string( const Allocator& alloc = Allocator() ); |
(1) | |
basic_string( size_type count, CharT ch, const Allocator& alloc = Allocator() ); |
(2) | |
basic_string( const basic_string& other, size_type pos, size_type count = std::basic_string::npos, const Allocator& alloc = Allocator() ); |
(3) | |
basic_string( const CharT* s, size_type count, const Allocator& alloc = Allocator() ); |
(4) | |
basic_string( const CharT* s, const Allocator& alloc = Allocator() ); |
(5) | |
template< class InputIt > basic_string( InputIt first, InputIt last, const Allocator& alloc = Allocator() ); |
(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) |
Costruisce nuova stringa da una varietà di fonti di dati ed eventualmente utilizzando allocatore fornita dall'utente
alloc.Original:
Constructs new string from a variety of data sources and optionally using user supplied allocator
alloc.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.
1)
Costruttore di default. Costruisce una stringa vuota.
Original:
Default constructor. Constructs empty 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.
2)
Costruisce la stringa con copie
count ch di carattere.Original:
Constructs the string with
count copies of character ch.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.
3)
Costruisce la stringa con un
[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.Original:
Constructs the string with a substring
[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.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.
4)
Costruisce la stringa con i caratteri
count primi stringa di caratteri puntato da s. s può contenere caratteri nulli. s non deve essere un puntatore NULL.Original:
Constructs the string with the first
count characters of character string pointed to by s. s can contain null characters. s must not be a NULL pointer.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.
5)
Costruisce la stringa con il contenuto della stringa con terminazione null di caratteri puntata da
s. La lunghezza della stringa è determinata dal carattere nullo prima. s non deve essere un puntatore NULL.Original:
Constructs the string with the contents of null-terminated character string pointed to by
s. The length of the string is determined by the first null character. s must not be a NULL pointer.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.
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.
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.
| ||
Complessità
1)
costante
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.
2-4)
lineare in
countOriginal:
linear in
countThe 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.
5) linear in length of s
6)
lineare di distanza tra
first e lastOriginal:
linear in distance between
first and lastThe 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.
7)
lineare in dimensione
otherOriginal:
linear in size of
otherThe 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.
8)
costante. Se
alloc è dato e alloc != other.get_allocator(), quindi lineare.Original:
constant. If
alloc is given and alloc != other.get_allocator(), then linear.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.
9)
lineare in dimensione
initOriginal:
linear in size of
initThe 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.
Esempio
| This section is incomplete Reason: no example |
Vedi anche
| assegna caratteri ad una stringa (metodo pubblico) | |
| assegna valori ad una stringa (metodo pubblico) | |