首页 > 后端开发 > C++ > 如何处理自定义流运算符重载中的'std::endl”?

如何处理自定义流运算符重载中的'std::endl”?

DDD
发布: 2024-12-08 08:26:12
原创
238 人浏览过

How to Handle `std::endl` in Custom Stream Operator Overloading?

自定义流实现中的运算符重载和处理 std::endl

考虑以下代码片段,其中运算符

template <typename T>
UIStream& operator<< (const T);

UIStream my_stream;
my_stream << 10 << " heads";
登录后复制

虽然这按预期工作,但尝试使用 my_stream

要解决此问题,重要的是要了解 std::endl 不是对象而是函数。在 std::cout 中,它是通过实现运算符

运算符的自定义实现

struct MyStream
{
    template <typename T>
    MyStream& operator<< (const T& x)
    {
        std::cout << x;
        return *this;
    }

    // Function that takes a custom stream and returns it
    typedef MyStream& (*MyStreamManipulator)(MyStream&);

    // Accept function with custom signature
    MyStream& operator<< (MyStreamManipulator manip)
    {
        return manip(*this);
    }

    // Define a custom endl for this stream (matches MyStreamManipulator signature)
    static MyStream& endl(MyStream& stream)
    {
        std::cout << std::endl;
        stream << "Called MyStream::endl!" << std::endl;
        return stream;
    }
};
登录后复制

此自定义实现定义了一个运算符

  • 第一种类型是通用函数指针,它接受对 MyStream 对象的引用并返回对同一对象的引用。
  • 第二种类型是专门获取对 MyStream 对象的引用并返回对同一对象的引用的函数指针。

这允许实现自定义 endl 函数在自定义流上运行。

以上是如何处理自定义流运算符重载中的'std::endl”?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板