endl
Beendet eine Zeile und leert den Puffer.
template class<_Elem, _Tr>
basic_ostream<_Elem, _Tr>& endl(
basic_ostream<_Elem, _Tr>& _Ostr
);
Parameter
_Elem
Der Elementtyp._Ostr
Ein Objekt vom Typ basic_ostream._Tr
Zeichenmerkmale.
Rückgabewert
Ein Objekt vom Typ basic_ostream.
Hinweise
Der Manipulator ruft _Ostr**.put(_Ostr.** widen('\n')) auf und ruft dann _Ostr**.**flush auf. Sie gibt _Ostr zurück.
Beispiel
// ostream_endl.cpp
// compile with: /EHsc
#include <iostream>
int main( )
{
using namespace std;
cout << "testing" << endl;
}
Anforderungen
Header: <ostream>
Namespace: std