当我想创建一个新的fstream时要继承什么?

发布于 2024-12-11 04:53:06 字数 57 浏览 0 评论 0原文

我想用 C++ 定义一种新的 filestream 类型。我应该继承什么?

I want to define a new type of filestream in C++. What should I inherit from?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情释 2024-12-18 04:53:06

如果您从头开始编写 I/O 部分,请继承 basic_filebufbasic_streambuf。您可能还需要一个从 basic_[i/o]fstream 派生的类,但为了方便起见,这是严格可选的。如果不需要模板,请删除 basic_ 并从类而不是模板继承。

*stream 类都通过多态指针调度 I/O,您可以使用 rdbuf() 方法获取和设置该指针。因此,除非/直到您实现便利类,否则您可以通过实例化 std::iostream 并使用指针调用 rdbuf 来进行测试。

手头有一份标准副本对于满足派生类的要求非常有用。您的主要功能将在虚拟函数 overflowunderflow 中。

Inherit from basic_filebuf, or basic_streambuf if you're writing the I/O parts from scratch. You might also want a class derived from basic_[i/o]fstream, but that is strictly optional, for convenience. If templating is not required, drop the basic_ and inherit from the classes, not the templates.

The *stream classes all dispatch I/O through a polymorphic pointer which you can get and set using the rdbuf() method. So unless/until you implement the convenience class, you can test by instantiating std::iostream and calling rdbuf with your pointer.

It is very useful to have a copy of the Standard handy, to work through the requirements for the derived class. Your main functionality will be in the virtual functions overflow and underflow.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文