我正在尝试创建一个函数,使std::string
在我的 C++ WinAPI 应用程序中组合 C 字符串和 sa 更容易一些。
所以不要这样做:
TCHAR res[MAX_PATH];
_stprintf(res, _T("In functionX(): error occured where the variable values are %d, %u, %s, %c"), myInt, myUnsignedInt, myStr.c_str(), myChar);
MessageBox(NULL, res, _T("Error Occurred"), MB_OK);
我只需要这样做(这使得合并不同的字符串类型变得更容易,因为我不必在任何地方都声明 TCHAR 数组):
tstring res = concat(_T("In functionX(): error occured with the variable values %d, %u, %s, %c"), myInt, myUnsignedInt, myStr.c_str(), myChar);
MessageBox(NULL, (LPTSTR)res.c_str(), _T("Error Occurred"), MB_OK);
我的问题:我的函数concat(); 当我在参数格式中传递超过 1 个变量时失败,我不知道为什么?
// The following function call causes the error
tstring ou = concat(_T("In functionX(): Failed to create temp file - %s - %s\r\n"), (LPTSTR)tempFileRootDir.c_str(), tempFile);
tstring WinFile::concat( TCHAR* strFormat, TCHAR* format, ... )
{
// tstring is either a std::string or std::wstring depending on whether unicode is used
// Post: Wrapper function to easily merge C++ strings with C Strings
va_list arguments;
va_start(arguments, format);
TCHAR res[MAX_PATH];
_stprintf(res, strFormat, format);
return tstring(res);
}
在 Microsoft Visual C++ 中运行该函数时发生的错误是:
Application.exe 中发生缓冲区溢出,已损坏程序的内部状态。按 Break 调试程序或按 Continue 终止程序。
有关详细信息,请参阅帮助主题“如何调试缓冲区溢出问题”。