How can I derive my own stream from a standard stream?

倖福魔咒の 提交于 2019-12-30 09:09:03

问题


How can I derive my own stream from a standard stream?

In C# language, there is a Stream class, but C++'s streams are too complex.

I want something like this:

class my_stream : public std::stream
{
  // How to derive?
};

void using_a_stream(std::stream* s)
{
  *s << "Hello world";
}

void main()
{
  std::stream s1;
  std::fstream s2("C:\\test.txt");
  my_stream s3;

  using_a_stream(&s1);
  using_a_stream(&s2);
  using_a_stream(&s3);
}

Note: The code just a sample and may be invalid C++ program. Thanks.


回答1:


I think there are three levels of answer to this question:

Level 1: It is complicated, especially if you are completely new to C++, stop right now. Only if you feel adventurous, continue to level 2.

Level 2: Use some library that makes creating streams easier. I would suggest using Boost.IOStreams library. It makes creating own streams and streambufs much easier. If you are still not satisfied, continue to level 3.

Level 3: You will have to derive from std::streambuf and modify its behaviour to suit your needs. Then you will have to plug your streambuf into own stream.




回答2:


Could you please describe a little bit more what you own streamclass should do? Just asking how without what is not the best way to get a constructive answer.

Maybe you should have a look at boost::iostream, as there is a much simpler and safer way to write own iostream classes.




回答3:


Don't.

iostreams is an awful interface. It also lacks a lot of features and has awful performance.

  • Are the C formatted I/O functions (printf, sprintf, etc) more popular than IOStream, and if so, why?
  • What are the bad habits of C programmers starting to write C++?
  • Should I use printf in my C++ code?
  • Is it bad practice to use C features in C++?
  • Partially truncating a stream (fstream or ofstream) in C++


来源:https://stackoverflow.com/questions/6490499/how-can-i-derive-my-own-stream-from-a-standard-stream

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!