使用指向参数列表的指针编写格式化输出到控制台。 这些版本的 _vcprintf
、_vcprintf_l
、_vcwprintf
、_vcwprintf_l
具有安全增强功能,如 CRT 中的安全功能中所述。
重要
此 API 不能用于在 Windows 运行时中执行的应用程序。 有关详细信息,请参阅通用 Windows 平台应用中不支持的 CRT 函数。
语法
int _vcprintf_s(
char const* const format,
va_list argptr
);
int _vcprintf_s_l(
char const* const format,
_locale_t locale,
va_list argptr
);
int _vcwprintf_s(
wchar_t const* const format,
va_list argptr
);
int _vcwprintf_s_l(
wchar_t const* const format,
_locale_t locale,
va_list argptr
);
参数
format
格式规范。
argptr
指向参数列表的指针。
locale
要使用的区域设置。
有关详细信息,请参阅格式规范语法:printf
和 wprintf
函数。
返回值
写入的字符数,如果发生输出错误,则为一个负值。
与这些函数的不安全版本相似,如果 format
是空指针,则调用无效参数处理程序,如参数验证中所述。 此外,与这些函数的不安全版本不同的是,如果 format
未指定有效格式,则会生成无效参数异常。 如果允许执行继续,则这些函数将返回错误代码,并将 errno
设置为该错误代码。 如果不应用更特定的值,则默认错误代码为 EINVAL
。
备注
每个函数均采用一个指向参数列表的指针,然后将给定数据格式化并写入到控制台。 _vcwprintf_s
是 _vcprintf_s
的宽字符版本。 它将采用一个宽字符字符串作为参数。
这些带有 _l
后缀的函数的版本相同,只不过它们使用传入的区域设置参数而不是当前线程区域设置。
重要
确保 format
不是用户定义的字符串。 有关详细信息,请参阅避免缓冲区溢出。
一般文本例程映射
TCHAR.H 例程 | _UNICODE 和 _MBCS 未定义 |
_MBCS 已定义 |
_UNICODE 已定义 |
---|---|---|---|
_vtcprintf_s |
_vcprintf_s |
_vcprintf_s |
_vcwprintf_s |
_vtcprintf_s_l |
_vcprintf_s_l |
_vcprintf_s_l |
_vcwprintf_s_l |
要求
例程 | 必需的标头 | 可选标头 |
---|---|---|
%> | <conio.h> 和 <stdarg.h> | <varargs.h>* |
%> | <conio.h> 或 <wchar.h> 以及 <stdarg.h> | <varargs.h>* |
* 仅对 UNIX V 兼容性是必需的。
有关兼容性的详细信息,请参阅 兼容性。
重要
从 Windows 10 版本 2004(内部版本 19041)开始,printf
系列函数根据 IEEE 754 的舍入规则输出可精确表示的浮点数。 在早期的 Windows 版本中,以“5”结尾并且可精确表示的浮点数总是向上取整。 IEEE 754 规定它们必须舍入到最接近的偶数(也称为“四舍六入五成双”)。 例如,printf("%1.0f", 1.5)
和 printf("%1.0f", 2.5)
都应舍入为 2。 之前,1.5 舍入为 2,2.5 舍入为 3。 此更改仅影响可精确表示的数字。 例如,2.35(用于内存表示时更接近于 2.35000000000000008)仍然向上取整为 2.4。 这些函数完成的舍入现在也遵循 fesetround
设置的浮点舍入模式。 以前,舍入始终选择 FE_TONEAREST
行为。 此更改仅影响使用 Visual Studio 2019 版本 16.2 及更高版本生成的程序。 若要使用旧浮点舍入行为,请链接到 legacy_stdio_float_rounding.obj
。
示例
// crt_vcprintf_s.cpp
#include <conio.h>
#include <stdarg.h>
// An error formatting function used to print to the console.
int eprintf_s(const char* format, ...)
{
va_list args;
va_start(args, format);
int result = _vcprintf_s(format, args);
va_end(args);
return result;
}
int main()
{
eprintf_s("(%d:%d): Error %s%d : %s\n", 10, 23, "C", 2111,
"<some error text>");
eprintf_s(" (Related to symbol '%s' defined on line %d).\n",
"<symbol>", 5 );
}
(10,23): Error C2111 : <some error text>
(Related to symbol '<symbol>' defined on line 5).