std::basic_streambuf::setp
Da cppreference.com.
< cpp | io | basic streambuf
![]() | 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. |
void setp( char_type* pbeg, char_type* pend ); | ||
Imposta i valori dei puntatori definiscono l'area messa. In particolare, dopo la chiamata pbase()== pbeg, pptr()== pbeg, epptr()== pend
Original:
Sets the values of the pointers defining the put area. Specifically, after the call pbase()== pbeg, pptr()== pbeg, epptr()== pend
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.
Indice |
[modifica]Parametri
pbeg | - | puntatore al nuovo inizio della zona messo Original: pointer to the new beginning of the put area The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
pend | - | puntatore alla fine della zona di nuovo messo Original: pointer to the new end of the put area The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifica]Valore di ritorno
(Nessuno)
Original:
(none)
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.
[modifica]Esempio
This section is incomplete Reason: no example |
[modifica]Vedi anche
riposiziona puntatori l'inizio, poi, e la fine della sequenza di input Original: repositions the beginning, next, and end pointers of the input sequence The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (protetto funzione membro) |