gpt4 book ai didi

c++ - 有没有一种简单的方法来获取用 C++ 打印的字符数?

转载 作者:可可西里 更新时间:2023-11-01 17:49:22 24 4
gpt4 key购买 nike

printf(...) 返回输出到控制台的字符数,我发现这对设计某些程序很有帮助。所以,我想知道 C++ 中是否有类似的功能,因为 cout<< 是一个没有返回类型的运算符(至少从我的理解来看是这样)。

最佳答案

可以将自己的streambuf关联到cout来统计字符。

这是包装它的类:

class CCountChars {
public:
CCountChars(ostream &s1) : m_s1(s1), m_buf(s1.rdbuf()), m_s1OrigBuf(s1.rdbuf(&m_buf)) {}
~CCountChars() { m_s1.rdbuf(m_s1OrigBuf); m_s1 << endl << "output " << m_buf.GetCount() << " chars" << endl; }

private:
CCountChars &operator =(CCountChars &rhs) = delete;

class CCountCharsBuf : public streambuf {
public:
CCountCharsBuf(streambuf* sb1) : m_sb1(sb1) {}
size_t GetCount() const { return m_count; }

protected:
virtual int_type overflow(int_type c) {
if (streambuf::traits_type::eq_int_type(c, streambuf::traits_type::eof()))
return c;
else {
++m_count;
return m_sb1->sputc((streambuf::char_type)c);
}
}
virtual int sync() {
return m_sb1->pubsync();
}

streambuf *m_sb1;
size_t m_count = 0;
};

ostream &m_s1;
CCountCharsBuf m_buf;
streambuf * const m_s1OrigBuf;
};

然后你像这样使用它:

{
CCountChars c(cout);
cout << "bla" << 3 << endl;
}

当对象实例存在时,它会计算 cout 输出的所有字符。

请记住,这只会计算通过 cout 输出的字符,而不计算使用 printf 打印的字符。

关于c++ - 有没有一种简单的方法来获取用 C++ 打印的字符数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41377045/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com