共用方式為


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 慣例