basic_ostream::operator<<

写入流。

basic_ostream<_Elem, _Tr>& operator<<(
    basic_ostream<_Elem, _Tr>& (*_Pfn)(basic_ostream<_Elem, _Tr>&)
);
basic_ostream<_Elem, _Tr>& operator<<(
    ios_base& (*_Pfn)(ios_base&)
);
basic_ostream<_Elem, _Tr>& operator<<(
    basic_ios<_Elem, _Tr>& (*_Pfn)(basic_ios<_Elem, _Tr>&)
);
basic_ostream<_Elem, _Tr>& operator<<(
    basic_streambuf<_Elem, _Tr> *_Strbuf
);
basic_ostream<_Elem, _Tr>& operator<<(
    bool _Val
);
basic_ostream<_Elem, _Tr>& operator<<(
    short _Val
);
basic_ostream<_Elem, _Tr>& operator<<(
    unsigned short _Val
);
basic_ostream<_Elem, _Tr>& operator<<(
    int __w64 _Val
);
basic_ostream<_Elem, _Tr>& operator<<(
    unsigned int __w64 _Val
);
basic_ostream<_Elem, _Tr>& operator<<(
    long _Val
);
basic_ostream<_Elem, _Tr>& operator<<(
    unsigned long __w64 _Val
);
basic_ostream<_Elem, _Tr>& operator<<(
     long long _Val
);
basic_ostream<_Elem, _Tr>& operator<<(
     unsigned long long _Val
);
basic_ostream<_Elem, _Tr>& operator<<(
    float _Val
);
basic_ostream<_Elem, _Tr>& operator<<(
    double _Val
);
basic_ostream<_Elem, _Tr>& operator<<(
    long double _Val
);
basic_ostream<_Elem, _Tr>& operator<<(
    const void *_Val
);

参数

  • _Pfn
    函数指针。

  • _Strbuf
    stream_buf 对象的指针。

  • _Val
    写入的元素。流。

返回值

为basic_ostream对象的引用。

备注

<ostream> 标头还定义几个全局插入运算符。 有关更多信息,请参见 operator<< (<ostream>)

第一个成员函数确保窗体 ostr << endl 调用的表达式 endl(ostr),然后返回 *this。 第二个和第三个功能可确保其他操控器,如 十六进制,行为类似。 其余的功能都是格式化输出功能。

功能

basic_ostream<_Elem, _Tr>& operator<<(basic_streambuf<Elem, Tr> *_Strbuf);

从 _Strbuf,因此,如果 _Strbuf 不是null指针和插入提取元素。 将文件结尾停止,或者,如果提取来重新引发的异常()。 它还停止,而不提取所涉及的元素,因此,如果插入失败。 如果函数插入没有元素,或者,如果提取引发异常,函数调用 setstate(failbit)。 在任何情况下,该函数返回 *this

功能

basic_ostream<_Elem, _Tr>& operator<<(bool _Val);

为布尔型字段和插入的转换_Val 通过调用 use_facet<num_put<Elem, OutIt>(getloc)。 放置(OutIt(rdbuf), *thisgetlocval)。 此处,OutIt 定义为 ostreambuf_iterator<Elem, Tr>。 函数返回 *this

功能

basic_ostream<_Elem, _Tr>& operator<<(short _Val);
basic_ostream<_Elem, _Tr>& operator<<(unsigned short _Val);
basic_ostream<_Elem, _Tr>& operator<<(int _Val);
basic_ostream<_Elem, _Tr>& operator<<(unsigned int __w64 _Val);
basic_ostream<_Elem, _Tr>& operator<<(long _Val);
basic_ostream<_Elem, _Tr>& operator<<(unsigned long _Val);
basic_ostream<_Elem, _Tr>& operator<<(long long _Val);
basic_ostream<_Elem, _Tr>& operator<<(unsigned long long _Val);
basic_ostream<_Elem, _Tr>& operator<<(const void *_Val);

数字字段和插入的每个转换 _Val 通过调用 use_facet<num_put<Elem, OutIt>(getloc)。 put(OutIt(rdbuf),*thisgetlocval)。 此处,OutIt 定义为 ostreambuf_iterator<Elem, Tr>。 函数返回 *this

功能

basic_ostream<_Elem, _Tr>& operator<<(float _Val);
basic_ostream<_Elem, _Tr>& operator<<(double _Val);
basic_ostream<_Elem, _Tr>& operator<<(long double _Val);

为数字字段和插入的每个转换_Val 通过调用 use_facet<num_put<Elem, OutIt>(getloc). put(OutIt(rdbuf),*thisgetlocval)。 此处,OutIt 定义为 ostreambuf_iterator<Elem, Tr>。 函数返回 *this

示例

// basic_ostream_op_write.cpp
// compile with: /EHsc
#include <iostream>
#include <string.h>

using namespace std;

ios_base& hex2( ios_base& ib )
{
   ib.unsetf( ios_base::dec );
   ib.setf( ios_base::hex );
   return ib;
}

basic_ostream<char, char_traits<char> >& somefunc(basic_ostream<char, char_traits<char> > &i)
{
   if ( i == cout )
   {
      i << "i is cout" << endl;
   }
   return i;
}

class CTxtStreambuf : public basic_streambuf< char, char_traits< char > >
{
public:
   CTxtStreambuf(char *_pszText)
   {
      pszText = _pszText;
      setg(pszText, pszText, pszText+strlen(pszText));
   };
          char *pszText;
};

int main( )
{
   cout << somefunc;
   cout << 21 << endl;

   hex2(cout);
   cout << 21 << endl;

   CTxtStreambuf f("text in streambuf");
   cout << &f << endl;
}

Output

i is cout
21
15
text in streambuf

要求

标头: <ostream>

命名空间: std

请参见

参考

basic_ostream Class

operator<< (<ostream>)

iostream编程

(mfc)约定