operator<< (<string>)

字符串写入输出流的模板函数。

template<class CharType, class Traits, class Allocator> 
   basic_ostream<CharType, Traits>& operator<<( 
      basic_ostream<CharType, Traits>& _Ostr, 
      const basic_string<CharType, Traits, Allocator>& _Str 
);

参数

  • _Ostr
    编写的输出流。

  • _Str
    将输入的字符串转换输出流。

返回值

编写指定字符串的值输出到 _Ostr流。

备注

插入模板类**<<*对象_Str 的模板函数重载运算符basic_string 到流_Ostr。*函数返回_Ostr 有效。write(_Strc_str,_Str范围)。

要求

标头:< 字符串>

命名空间: std

请参见

参考

string::operator<<