endl是C++標準庫中的操控器(Manipulator),包含於<iostream>,命名空間(namespace):std,其主要搭配iostream對象來使用,如cout、cerr等等。
基本介紹
- 外文名:endl
- 性質:C++程式語言
- 意思:一行輸出結束,然後輸出下一行
- 全稱:end of line
介紹
template <class charT, class traits>basic_ostream<charT,traits>& endl (basic_ostream<charT,traits>& os);
作用
示例
例一
cout<<"the id is"<<endl <<2;cout<<"the id is"<<2 << endl;
the id is2
the id is 2
例二
std::endl(cout); // 等於 std::endl(std::cout);std::endl(cout << "this id is" << 2); // 等於 std::endl(std::cout << "this id is" << 2);
std::cout << std::endl; // 不能寫成std::cout << endl;
std::cout << "this id is" << 2 << std::endl; // 如上所述