endl

终止线并刷新缓冲区。

template class<_Elem, _Tr>
   basic_ostream<_Elem, _Tr>& endl( 
      basic_ostream<_Elem, _Tr>& _Ostr 
   );

参数

  • _Elem
    元素类型。

  • _Ostr
    basic_ostream 类型的对象。

  • _Tr
    性格字符。

返回值

basic_ostream 类型的对象。

备注

移动调用 _Ostr###._Ostr扩大放置(###.('\n'),然后调用 ###. _Ostr刷新。 它返回 _Ostr。

示例

// ostream_endl.cpp
// compile with: /EHsc
#include <iostream>

int main( ) 
{
   using namespace std;
   cout << "testing" << endl;
}
  

要求

页眉: <ostream>

命名空间: std

请参见

参考

iostream 编程

iostreams 约定