如何清除std :: ostream

时间:2016-05-09 20:15:19

标签: c++

我们如何清除或清空std :: ostream对象?

我在这里找到的例子是stringstream;

stringstream m;
m.str("");

显然这对ostream不起作用。

编辑:根据要求,使用:

我在简单的秒表中使用ostream对象。追踪慢功能的时间。 随着流对象越来越大的时间,应用程序无响应。所以在这里我试图清除ostream对象。优选在CStopUhr的构造函数中。

static tstringstream fout;                         // fout to stringstream
//static tofstream fout(_T("SpooferTimeTrace.log); // fout to file 
static std::wostream fout(std::wcout.rdbuf());     // fout to cout

class CStopUhr
{
public:
    CStopUhr(tostream& os, LPCTSTR txt = _T(" Time: ")) 
     :_os(os) 
      { _os.clear(); _txt = txt; _dwStart = GetTickCount(); }
    ~CStopUhr()         
      { _os << _txt << (GetTickCount()-_dwStart) << _T("ms ") << std::endl; }
private:
    DWORD _dwStart;
    tostream& _os;
    tstring  _txt;
};

用法:

 void testfunction()
 {
    CStopUhr suhr(fout, CString(__FUNCTION__);
    :
    ;
}

1 个答案:

答案 0 :(得分:0)

我没有看到你这么做的充分理由,但也许你可以直接干扰基础std::streambuf对象,碰撞 put 指针直到没有更多优秀缓冲区中的字符?