使用 C++ 可变长度参数时,如何从 _TCHAR * 转换为 char *?

2022-01-12 00:00:00 char c++ tchar

我们需要将一个格式 _TCHAR * 字符串和多个 char * 字符串传递给一个可变长度参数的函数:

We need to pass a format _TCHAR * string, and a number of char * strings into a function with variable-length args:

inline void FooBar(const _TCHAR *szFmt, const char *cArgs, ...) {
  //...
}

所以可以这样调用:

char *foo = "foo";
char *bar = "bar";
LogToFileA(_T("Test %s %s"), foo, bar);

显然,一个简单的解决方法是使用 _TCHAR 代替 char,但不幸的是,我们没有这种奢侈.

Obviously a simple fix would be to use _TCHAR instead of char, but we don't have that luxury unfortunately.

我们需要将它与 va_start 等一起使用,以便我们可以格式化字符串:

We need to use this with va_start, etc so we can format a string:

va_list args;
_TCHAR szBuf[BUFFER_MED_SIZE];

va_start(args, cArgs);
_vstprintf_s(szBuf, BUFFER_MED_SIZE, szFmt, args);
va_end(args);

不幸的是我们不能使用它,因为它给了我们这个错误:

Unfortunately we cannot use this because it give us this error:

Unhandled exception at 0x6a0d7f4f (msvcr90d.dll) in foobar.exe:
0xC0000005: Access violation reading location 0x2d86fead.

我认为我们需要将 char * 转换为 _TCHAR * - 但是如何?

I'm thinking we need to convert our char * to _TCHAR * - but how?

推荐答案

使用 %hs 或 %hS 代替 %s.这将强制在 Ansi 和 Unicode 版本的 printf() 样式函数中将参数解释为 char*,即:

Use %hs or %hS instead of %s. That will force the parameters to be interpretted as char* in both Ansi and Unicode versions of printf()-style functions, ie:

inline void LogToFile(const _TCHAR *szFmt, ...)
{  
  va_list args;
  TCHAR szBuf[BUFFER_MED_SIZE];

  va_start(args, szFmt);
  _vstprintf_s(szBuf, BUFFER_MED_SIZE, szFmt, args);
  va_end(args);
}  

{
  char *foo = "foo"; 
  char *bar = "bar"; 
  LogToFile(_T("Test %hs %hs"), foo, bar); 
}

相关文章