c++ cout<<hex的重载是怎么实现的?

书上说hex是控制符,而控制符实际上是函数。我所知道的<<重载都是后接数据类型的重载,比如cout<<(int)。但是重载像hex的函数是如何实现的?说是和hex(cout)等价?

阅读 3.3k
1 个回答

hex之类的函数叫做stream manipulators。
他们确实是函数:

  // /usr/include/c++/4.4.7/bits/ios_base.h
  inline ios_base&
  hex(ios_base& __base)
  {
    __base.setf(ios_base::hex, ios_base::basefield);
    return __base;
  }

也是针对<<操作符的一种重载,重载的参数是hex之类的函数,可以在代码中看到:

  // /usr/include/c++/4.4.7/ostream
  __ostream_type&
  operator<<(ios_base& (*__pf) (ios_base&))
  {
    // _GLIBCXX_RESOLVE_LIB_DEFECTS
    // DR 60. What is a formatted input function?
    // The inserters for manipulators are *not* formatted output functions.
    __pf(*this);
    return *this;
  }
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题