Udostępnij za pośrednictwem


string::operator<<

Ilustruje sposób użycia string::operator << funkcji biblioteki szablon standardowy (STL) w programie Visual C++.

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);

Uwagi

[!UWAGA]

Nazwy klasy/parametr w prototyp nie pasują do wersji w pliku nagłówkowym.Niektóre zostały zmodyfikowane w celu poprawienia czytelności.

Operator << jest używany do wstawiania ciąg do strumienia wyjściowego.

Przykład

// 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;
}
  
  

Wymagania

Nagłówek: <string>

Zobacz też

Koncepcje

Standardowy szablon biblioteki próbek