1

我有一个简单的记录器类,我试图将其转换为接受和输出 wstrings 而不是字符串。

标题:

#include <fstream>
using namespace std;

class CLog 
{
  public:
    CLog(wstring filename);
    ~CLog();
    void WriteString(string uString);
  private:
    fstream m_stream;
};

cp:

#include "stdafx.h";
#include "log.h";

CLog::CLog(wstring uPath) 
{
  m_stream.open(uPath);
}
void CLog::WriteString(string uString)
{
  m_stream << uString.c_str() << endl;
}
CLog::~CLog()
{
  m_stream.close();
}

有人可以建议我应该使用什么来代替 fstream 吗?我尝试使用 wstringstream,但它甚至没有 .open 将其输出到文件,所以我认为这是错误的方法。

我想保留它立即写入文件的行为。

4

1 回答 1

4

我现在使用“wofstream”而不是“fstream”,而且效果很好。

于 2013-04-05T09:33:42.057 回答