“std::endl” vs “\n”

后端 未结 12 2375
耶瑟儿~
耶瑟儿~ 2020-11-21 04:35

Many C++ books contain example code like this...

std::cout << \"Test line\" << std::endl;

...so I\'ve always done that too. But

12条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-21 05:18

    There might be performance issues, std::endl forces a flush of the output stream.

提交回复
热议问题