发新帖

[C/VC/C++] StringCchPrintf

零下一度 2019-7-18 1016


StringCchPrintf是sprintf的一个替代品。它接受一个格式字符串和参数列表和返回一个格式化字符串。提供检查功能,确保不越界访问。


TCHAR pszDest[30]; 
size_t cchDest = 30;
LPCTSTR pszFormat = TEXT("%s %d + %d = %d.");
TCHAR* pszTxt = TEXT("The answer is");
HRESULT hr = StringCchPrintf(pszDest, cchDest, pszFormat, pszTxt, 1, 2, 3);
// The resultant string at pszDest is "The answer is 1 + 2 = 3."

const HRESULT* tm = &hr


最新回复 (0)
返回
零下一度
主题数
928
帖子数
0
注册排名
1