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编程

(mfc)约定