CStringT::FormatV
使用變數引數清單,格式化訊息字串。
void FormatV(
PCXSTR pszFormat,
va_list args
);
參數
pszFormat
格式字串至控制項的點。 它會插入會掃描然後相應地格式化。 格式字串類似於執行階段函式 printf式格式字串,不過,前者允許使用參數以任意順序插入。args
引數清單的指標。
備註
將 CStringT 字串的方式將格式化的字串和引數清單變數清單 vsprintf_s 該格式的資料寫入 C. 的字元陣列。
範例
void WriteString(LPCTSTR pstrFormat, ...)
{
CString str;
// format and write the data you were given
va_list args;
va_start(args, pstrFormat);
str.FormatV(pstrFormat, args);
va_end(args);
_tprintf_s(str);
return;
}
// Call the above WriteString function.
WriteString(_T("%d error(s) found in %d line(s)"), 10, 1351);
需求
Header: cstringt.h