basic_streambuf::sgetn
Gli estratti fino ai caratteri di _Count dal buffer di input e li memorizza nel buffer fornito _Ptr.
Questo metodo è potenzialmente pericoloso, poiché si basa sul chiamante per controllare che i valori passati siano corretti.
streamsize sgetn(
char_type *_Ptr,
streamsize _Count
);
Parametri
_Ptr
Il buffer per contenere caratteri estratti._Count
Il numero di elementi da leggere.
Valore restituito
Il numero di elementi lettura. Per ulteriori informazioni, vedere streamsize.
Note
La funzione membro restituisce xsgetn(_Ptr, _Count).
Esempio
// basic_streambuf_sgetn.cpp
// compile with: /EHsc /W3
#include <iostream>
#include <fstream>
int main()
{
using namespace std;
ifstream myfile("basic_streambuf_sgetn.txt", ios::in);
char a[10];
// Extract 3 characters from myfile and store them in a.
streamsize i = myfile.rdbuf()->sgetn(&a[0], 3); // C4996
a[i] = myfile.widen('\0');
// Display the size and contents of the buffer passed to sgetn.
cout << i << " " << a << endl;
// Display the contents of the original input buffer.
cout << myfile.rdbuf() << endl;
}
Input: basic_streambuf_sgetn.txt
testing
Output
3 tes
ting
Requisiti
streambuf <diIntestazione: >
Spazio dei nomi: std