string::operator<<

在 Visual C++ 演示如何使用 字符串:: operatorAMP_LTAMP_LT 标准 (STL)模板库函数。

template<class _E, class _TYPE, class _A> inline
basic_ostream<_E, _TYPE>&
operator<<( basic_ostream<_E, _TYPE>& OStream,
            const basic_string<_E, _TYPE, _A>& XString);

备注

备注

类/参数名在原型不匹配版本在头文件。修改某些提高可读性。

operatorAMP_LTAMP_LT 用于插入到输出流。

示例

// StringInsertion.cpp
// compile with: /EHsc
// Illustrates how to use the insertion operator
// (operator<<) to insert a string into an output
// stream.
//
// Functions:
//
//    operator<<   Inserts a string into an output stream.
//////////////////////////////////////////////////////////////////////

#pragma warning(disable:4786)
#include <string>
#include <iostream>

using namespace std ;

int main()
{
    string msg="Hello!  This is the insertion operator.";
    cout << msg << endl;
}
      

要求

标题: string

请参见

概念

标准模板库示例