string::operator<<
Nasıl kullanılacağı gösterilmiştir string::operator << Visual C++ standart şablon kitaplığı (stl) işlevi.
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);
Notlar
Not
Prototip sınıfı/parametre adları üstbilgi dosyasında sürüm eşleşmiyor.Bazıları, okumayı kolaylaştırmak için değiştirildi.
İşleç << çıktı akımına bir dize eklemek için kullanılır.
Örnek
// 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;
}
Gereksinimler
Başlık: <string>