basic_ios::rdbuf
Belirtilen arabellek akışı yollar.
basic_streambuf<Elem, Traits> *rdbuf( ) const;
basic_streambuf<Elem, Traits> *rdbuf(
basic_streambuf<Elem, Traits> *_Sb
);
Parametreler
- _Sb
Bir akış.
Notlar
İlk üye işlev saklı Akış Arabellek işaretçi döndürür.
İkinci üye işlev depoları _Sb saklı Akış Arabellek işaretçi, önceden saklanan değer verir.
Örnek
// basic_ios_rdbuf.cpp
// compile with: /EHsc
#include <ios>
#include <iostream>
#include <fstream>
int main( )
{
using namespace std;
ofstream file( "rdbuf.txt" );
streambuf *x = cout.rdbuf( file.rdbuf( ) );
cout << "test" << endl; // Goes to file
cout.rdbuf(x);
cout << "test2" << endl;
}
Gereksinimler
Başlık: <ios>
Namespace: std