std::basic_string::basic_string
De cppreference.com
< cpp | string | basic string
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
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) | (depuis C++11) |
basic_string( basic_string&& other ) |
(8) | (depuis C++11) |
basic_string( basic_string&& other, const Allocator& alloc ); |
(8) | (depuis C++11) |
basic_string( std::initializer_list<CharT> init, const Allocator& alloc = Allocator() ); |
(9) | (depuis C++11) |
Construit nouvelle chaîne à partir d'une variété de sources de données et éventuellement à l'aide d'allocation fournie par l'utilisateur
1) 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.
Constructeur par défaut. Construit une chaîne vide .
2) 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.
Construit la chaîne des copies de
3) count
ch
caractère .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.
Construit la chaîne avec une chaîne de
4) [pos, pos+count)
other
. Si la sous-chaîne demandée dure-delà de la fin de la chaîne, ou si count == npos, la sous-chaîne résultante est [pos, size())
. Si pos >= other.size(), std::out_of_range est lancée .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.
Construit la chaîne avec les caractères
5) count
premiers chaîne de caractères pointée par s
. s
peut contenir des caractères nuls. s
ne doit pas être un pointeur 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.
Constructions de la chaîne avec le contenu de chaîne de caractères terminée par NULL pointé par
6) s
. La longueur de la chaîne est déterminée par le premier caractère nul. s
ne doit pas être un pointeur 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.
Construit la chaîne avec le contenu de la plage ..
7) [first, last)
Original:
Constructs the string with the contents of the range
[first, last)
.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.
Copiez constructeur. Construit la chaîne avec la copie du contenu de
8) other
.Original:
Copy constructor. Constructs the string with the copy of the contents of
other
.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.
Déplacez constructeur. Construit la chaîne avec le contenu de
9) other
utilisant la sémantique de déplacement .Original:
Move constructor. Constructs the string with the contents of
other
using move semantics.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.
Construit la chaîne avec le contenu de la liste d'initialisation
init
. Original:
Constructs the string with the contents of the initializer list
init
. 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.
Sommaire |
[modifier] Paramètres
alloc | - | allocateur à utiliser pour toutes les allocations de mémoire de cette chaîne
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 | - | taille de la chaîne résultante
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 | - | valeur pour initialiser la chaîne avec
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 | - | aller à copier les caractères
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 | - | pointeur vers une chaîne de caractères en tant que source de use
pour initialiser la chaîne avec 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 | - | une autre chaîne à utiliser comme source pour initialiser la chaîne avec
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 | - | initialiseur pour initialiser la liste avec la chaîne
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 .
|
[modifier] Complexité
1)constant
2-4) 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.
linéaire dans
5) count
Original:
linear in
count
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.
linéaire de longueur de
6) s
Original:
linear in length of
s
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.
linéaire de la distance entre
7) first
et last
Original:
linear in distance between
first
and last
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.
linéaire de la taille des
8) other
Original:
linear in size of
other
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.
constant. Si
9) alloc
est donné et alloc != other.get_allocator(), alors linéaire .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.
linéaire de la taille des
init
Original:
linear in size of
init
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.
[modifier] Exemple
This section is incomplete Reason: no example |
[modifier] Voir aussi
attribuer à une chaîne de caractères 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. (fonction membre publique) | |
attribue des valeurs à la chaîne 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. (fonction membre publique) |