Condividi tramite


char_traits::assign

Assegna un valore del carattere a un altro o a un intervallo di elementi in una stringa.

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

Parametri

  • **_**CharFrom
    Il carattere del cui valore deve essere assegnato.

  • _CharTo
    L'elemento che deve essere assegnato il valore del carattere.

  • _StrTo
    La stringa o una matrice di caratteri di cui gli elementi iniziali devono essere assegnati valori di carattere.

  • _Num
    Il numero di elementi che sarà possibile assegnare i valori.

Valore restituito

La seconda funzione membro restituisce un puntatore alla stringa di cui i primi elementi di _Num sono stati assegnati valori di _CharFrom.

Esempio

// 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;
}
  

Requisiti

Intestazione: <string>

Spazio dei nomi: std

Vedere anche

Riferimenti

Struct char_traits