- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想写一个像这样的功能:
DEBUG_LOG<<"append" << 123 <<" float=" <<123.432 << std::endl;
<<
这个运算符看起来像:
Logger& operator<<(const T& message)
{
if(message == std::endl)
{
flushBuffer();
return *this;
}
std::stringstream ss;
ss << message;
writeToBuffer(ss.str());
return *this;
}
现在,这肯定不能编译,因为 if 语句有编译错误。flushBuffer()
将一行写入文件并清除缓冲区,writeToBuffer()
附加到缓冲区。你能建议一些东西来代替 if 语句吗?基本上我需要知道何时收到换行符,相应地会调用其他两个函数。
最佳答案
我不确定写入缓冲区或刷新缓冲区的内容是什么,我在后台使用了 std::stringstream。
std::endl 不是您的模板函数的有效类型,它将无法编译(错误消息如下:未定义对 `operator<<(logger&, std::ostream& (*)(std::ostream&) )',因此您需要为其提供匹配项并在其中实现所需的行为。
#include <iostream>
#include <sstream>
#include <string>
class logger
{
std::stringstream buffer;
template<typename T> friend logger& operator<<(logger& log, const T& t);
friend logger& operator<<(logger& log, std::ostream& (*var)(std::ostream&));
public:
void flush()
{
std::cout << buffer.str();
}
};
template<class T>
logger& operator<<(logger& log, const T& t)
{
log.buffer << t;
return log;
}
logger& operator<<(logger& log, std::ostream& (*var)(std::ostream&)) {
log.buffer << std::endl;
return log;
}
int main()
{
logger l;
l << "append " << 123 <<" float=" << 123.432 << std::endl;
l << "some other stuff here" << std::endl;
l.flush();
}
如果这不仅仅是练习,我建议您在从头开始做某事之前从众多可用的库中选择一个。
关于c++ - 想要检查模板参数是否为 std::endl,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66292717/
这个问题在这里已经有了答案: User-defined Output Stream Manipulators in C (3 个答案) 关闭 6 年前。 我是 C++ 的新手,所以 endl 用于结
我以为它们是同一回事,但是当我向在线法官发送代码时(使用 endl(cout) )它给了我“错误答案”的判决,然后我尝试发送另一个使用 cout basic_ostream& operator& (
这是我的代码。这段代码可以很好地运行。但是当我删除“cout #include using namespace std; int main() { char * name; cha
我正在查看 argument-dependent lookup 上的维基百科条目, 并且(2014 年 1 月 4 日)给出了以下示例: #include int main() { std::co
我一直在玩一些 c++ hello world 的东西,并认为我会快速获得 qt 字符串。回显和转换字符串很好,但是 endl似乎很特别: #include int main(int, char*[
这是我的代码 #include #include using namespace std; int main(int argc, char* argv[]) { // set up input f
这个问题在这里已经有了答案: std::cout doen't like std::endl and string in conditional-if (2 个答案) 关闭 4 年前。 我正在尝试使
我只是想熟悉从 Java 迁移到 C++ 的基础知识。我刚刚编写了这个功能性禁欲程序并遇到错误 test.cpp:15: error: expected primary-expression befo
在C++入门一书的第(1)章中,它提到了以下内容: endl is a special value, called a manipulator, that when written to an out
C++ 有 std::endl .有谁知道 C 中有什么可以用于此目的吗? 最佳答案 std::endl具有打印换行符的效果'\n'字符,然后刷新输出流。 如果您要打印到标准输出,则 C 等效项将是:
我想写一个像这样的功能: DEBUG_LOG #include #include class logger { std::stringstream buffer; template
我正在编写一段简单的 c++ 代码来打印输入,直到输入不是 42。这是我的代码: #include using namespace std; int main(){ while(true){
关闭。这个问题是 not reproducible or was caused by typos 。它目前不接受答案。 想改进这个问题?更新问题,使其成为 Stack Overflow 的 on-to
在我正在编写的程序中,只有当我有一个 cout incoming.size() > 1) { Node* rec_node = node->incoming[rand() % node
我正在打印一堆字符串,如下所示: cout int main (void) { std::string s1 = "strA"; std::string s2 = "\rstrB";
我之前遇到了一个奇怪的问题。我在 B 树中从事插入工作,并编写了一个简单的显示函数。我运行了它,即使我插入了一些值,它也没有在控制台中显示任何内容。 我进入了 Debug模式,我跟随程序的流程,调试器
我试图理解指针,但无法理解为什么在将 "\n"; 添加到该行时使用解引用运算符打印值可以正常工作,但出于某种原因我当我使用 endl; 时没有得到任何输出。终端没有显示 endl; 的输出。这与out
我正在阅读 “\n” or '\n' or std::endl to std::cout? .尽管大家一致认为选择什么并不重要,但我还是决定构建一个人为的测试来衡量每个程序的执行速度。这是我的简单程序
我有一个继承自 ofstream 的类。我想重载插入运算符,以便它可以减少 ofstream 的替换。 第一个重载是 template MyClass& Myclass::operator class
我的程序将大量短行打印到 cout。 作为一个稍微做作的例子,我的台词看起来有点像这样: cout<<"The variable's value is: "<
我是一名优秀的程序员,十分优秀!