18 Ağustos 2016 Perşembe

filebuf Sınıfı

Giriş
Şu satırı dahil ederiz.
#include <fstream>
Constructor
Şöyle yaparız.
std::filebuf tempfilebuf;
close metodu
Şöyle yaparız.
tempfilebuf.close();
open metodu
Şöyle yaparız.
tempfilebuf.open("/tmp/extmpfile", std::ios::binary|std::ios::out);
Daha sonra bu sınıf ostream ile kullanılabilir. ostream yok olunca dosya kapatılmaz. Şöyle yaparız.
{
  std::ostream tempfile(&tempfilebuf);
  ...
}


Hiç yorum yok:

Yorum Gönder