ends (Standart C++ Kitaplığı)
Bir dize sonlandırır.
template class<_Elem, _Tr>
basic_ostream<_Elem, _Tr>& ends(
basic_ostream<_Elem, _Tr>& _Ostr
);
Parametreler
_Elem
Öğe türü._Ostr
Bir nesne türü basic_ostream._Tr
Karakter nitelikler.
Dönüş Değeri
Bir nesne türü basic_ostream.
Notlar
Manipulator çağrıları _Ostr**.put(_Elem('\0'**)). Geri döndürür_Ostr.
Örnek
// ostream_ends.cpp
// compile with: /EHsc
#include <iostream>
int main( )
{
using namespace std;
cout << "a";
cout << "b" << ends;
cout << "c" << endl;
}
Gereksinimler
Başlık: <ostream>
Namespace: std