ends (標準 C++ ライブラリ)
文字列を終了します。
template class<_Elem, _Tr>
basic_ostream<_Elem, _Tr>& ends(
basic_ostream<_Elem, _Tr>& _Ostr
);
_Elem
要素の型。_Ostr
basic_ostream 型のオブジェクト。_Tr
文字セット。
basic_ostream 型のオブジェクト。
マニピュレーターは _Ostr**.**設定 (_Elem () '\0') を呼び出します。これは _Ostr.を返します
// ostream_ends.cpp
// compile with: /EHsc
#include <iostream>
int main( )
{
using namespace std;
cout << "a";
cout << "b" << ends;
cout << "c" << endl;
}
ヘッダー: <ostream>
名前空間: std