Partager via


char_traits::assign

Affecte une valeur de caractère vers une autre ou à une plage d'éléments de chaîne.

static void assign( 
   char_type& _CharTo,  
   const char_type& _CharFrom  
); 
static char_type *assign( 
   char_type* _StrTo,  
   size_t _Num,  
   char_type _CharFrom  
);

Paramètres

  • **_**CharFrom
    Le caractère dont la valeur doit être affectée.

  • _CharTo
    L'élément qui doit être attribué la valeur par caractère.

  • _StrTo
    La chaîne ou un tableau de caractères dont les éléments initial doivent être assignés les valeurs de caractère.

  • _Num
    Le nombre d'éléments qui vont être attribués des valeurs.

Valeur de retour

La deuxième fonction membre retourne un pointeur vers la chaîne dont les premiers éléments d'_Num ont été attribués des valeurs de _CharFrom.

Exemple

// char_traits_assign.cpp
// compile with: /EHsc
#include <string>
#include <iostream>

int main( ) 
{
   using namespace std;

   // The first member function assigning 
   // one character value to another character
   char ChTo = 't';
   const char ChFrom = 'f';
   cout << "The initial characters ( ChTo , ChFrom ) are: ( "
        << ChTo << " , " << ChFrom << " )." << endl;
   char_traits<char>::assign ( ChTo , ChFrom );
   cout << "After assigning, the characters ( ChTo , ChFrom ) are: ( "
        << ChTo << " , " << ChFrom << " )." << endl << endl;

   // The second member function assigning 
   // character values to initial part of a string
   char_traits<char>::char_type s1[] = "abcd-1234-abcd";
   char_traits<char>::char_type* result1;
   cout << "The target string s1 is: " << s1 << endl;
   result1 = char_traits<char>::assign ( s1 , 4 , 'f' );
   cout << "The result1 = assign ( s1 , 4 , 'f' ) is: "
        << result1 << endl;
}
  

Configuration requise

En-tête : <chaîne>

Espace de noms : std

Voir aussi

Référence

char_traits, struct