转换TCHAR * - > unicode和非unicode环境中的std :: wstring

时间:2010-07-28 14:36:26

标签: c++ visual-c++ unicode atl

我在库中有一些代码必须在内部使用wstring,这一切都很好。但它使用来自unicode和非unicode项目的TCHAR字符串参数进行调用,而且我很难找到两种情况下的整齐转换。

我看到了一些ATL转换等等但看不到正确的方法,没有使用#define定义多个代码路径

1 个答案:

答案 0 :(得分:3)

假设TCHAR在Unicode版本中扩展为wchar_t

inline std::wstring convert2widestr(const wchar_t* const psz)
{
  return psz;
}
inline std::wstring convert2widestr(const char* const psz)
{
  std::size_t len = std::strlen(psz);
  if( psz.empty() ) return std::wstring();
  std::vector<wchar_t> result;
  const int len = WideCharToMultiByte( CP_ACP
                                     , 0
                                     , reinterpret_cast<LPCWSTR>(psz)
                                     , static_cast<int>(len)
                                     , NULL
                                     , 0
                                     , NULL
                                     , NULL
                                     );

  result.resize( len );
  if(result.empty()) return std::wstring();
  const int cbytes = WideCharToMultiByte( CP_ACP
                                        , 0
                                        , reinterpret_cast<LPCWSTR>(psz)
                                        , static_cast<int>(len)
                                        , reinterpret_cast<LPSTR>(&result[0])
                                        , static_cast<int>(result.size())
                                        , NULL
                                        , NULL
                                        );
  assert(cbytes);
  return std::wstring( result.begin(), result.begin() + cbytes );
}

像这样使用:

void f(const TCHAR* psz)
{
   std::wstring str = convert(psz);
   // ...
}