在 C++ 中有一个名为 的标准库函数cout
,它可以让我将文本发送到控制台。我相信你知道这一点。
#include <iostream>
using std::cout;
cout << "Some Text " << 15 << " Other Text";
最后要换行,我需要使用endl
.
cout << "Some Text " << 15 << " Other Text" << endl;
如何编写一个名为的函数coutl
,它的行为类似于cout
但也添加了一个likebreak?我想使用相同的语法cout
,尤其是<<
运算符。
coutl << "Some Text " << 15 << " Other Text"; // coutl should add a linebreak