printf_s, _printf_s_l, wprintf_s, _wprintf_s_l
打印格式化输出到标准输出流。 这些是 printf, _printf_l, wprintf, _wprintf_l 的版本与安全增强如 CRT中的安全功能所述。
int printf_s(
const char *format [,
argument]...
);
int _printf_s_l(
const char *format,
locale_t locale [,
argument]...
);
int wprintf_s(
const wchar_t *format [,
argument]...
);
int _wprintf_s_l(
const wchar_t *format,
locale_t locale [,
argument]...
);
参数
format
窗体控件。argument
可选参数。locale
使用的区域设置。
返回值
如果发生错误,则返回打印的字符数或负值。
备注
printf_s 功能设置格式并打印一系列字符和值到标准输出流,stdout。 如果参数采用 格式 字符串,format 字符串必须包含确保参数的输出格式的规范。
printf_s 和 printf 之间的主要差异在于 printf_s 检查格式字符串的格式无效字符,printf,而只检查格式字符串是否为 null 指针。 如果任何检查失败,无效参数调用处理程序,如 参数验证所述。 如果执行允许继续,该函数返回 -1 并将 errno 到 EINVAL。
有关 errno 和错误代码的信息,请参见 _doserrno、errno、_sys_errlist 和_sys_nerr。
printf_s和fprintf_s 具有相同的行为,但 printf_s 写入输出与 stdout 而不是类型 FILE的目标。 有关更多信息,请参见fprintf_s, _fprintf_s_l, fwprintf_s, _fwprintf_s_l。
wprintf_s 是 printf_s的宽字符版本;format 是宽字符字符串。 如果流在 ANSI 模式下,中打开wprintf_s 和 printf_s 具有相同的行为。 printf_s 当前不支持输出到 UNICODE 流。
这些功能的版本与 _l 后缀的相同,只不过它们使用区域设置参数而不是当前线程区域设置。
一般文本例程映射
TCHAR.H 实例 |
未定义的_UNICODE & _MBCS |
定义的_MBCS |
定义的_unicode |
---|---|---|---|
_tprintf_s |
printf_s |
printf_s |
wprintf_s |
_tprintf_s_l |
_printf_s_l |
_printf_s_l |
_wprintf_s_l |
format 参数包括普通字符、转义序列和 (如果参数采用 format) 格式规范。 普通字符和转义序列复制到 stdout 遵循其外观的序列。 例如,行
printf_s("Line one\n\t\tLine two\n");
生成输出
Line one
Line two
格式规范 始终从百分号 (%) 开头并读取的从左向右。 当 printf_s 遇到第一个格式规范 (如果有),它在 format 和输出后相应地转换第一个参数的值为。 这会导致第二个参数将第二个格式规范和输出,等等。 如果比格式规范具有多个参数,额外的参数将被忽略。 ;如果没有任何格式规范的,匹配的足够参数结果是未定义的。
安全说明 |
---|
确保 format 不是用户定义的字符串。 |
要求
实例 |
必需的标头 |
---|---|
printf_s, _printf_s_l |
<stdio.h> |
wprintf_s, _wprintf_s_l |
<stdio.h> 或 <wchar.h> |
控件个在 Windows 应用商店 apps 不受支持。 标准流处理与控件个,stdin,stdout和 stderr,在 C 运行时函数在 Windows 应用商店 apps 之前,可以使用它们必须重定向。 有关其他的兼容性信息,请参见中介绍的 兼容性。
示例
// crt_printf_s.c
/* This program uses the printf_s and wprintf_s functions
* to produce formatted output.
*/
#include <stdio.h>
int main( void )
{
char ch = 'h', *string = "computer";
int count = -9234;
double fp = 251.7366;
wchar_t wch = L'w', *wstring = L"Unicode";
/* Display integers. */
printf_s( "Integer formats:\n"
" Decimal: %d Justified: %.6d Unsigned: %u\n",
count, count, count );
printf_s( "Decimal %d as:\n Hex: %Xh C hex: 0x%x Octal: %o\n",
count, count, count, count );
/* Display in different radixes. */
printf_s( "Digits 10 equal:\n Hex: %i Octal: %i Decimal: %i\n",
0x10, 010, 10 );
/* Display characters. */
printf_s("Characters in field (1):\n%10c%5hc%5C%5lc\n", ch, ch, wch, wch);
wprintf_s(L"Characters in field (2):\n%10C%5hc%5c%5lc\n", ch, ch, wch, wch);
/* Display strings. */
printf_s("Strings in field (1):\n%25s\n%25.4hs\n %S%25.3ls\n",
string, string, wstring, wstring);
wprintf_s(L"Strings in field (2):\n%25S\n%25.4hs\n %s%25.3ls\n",
string, string, wstring, wstring);
/* Display real numbers. */
printf_s( "Real numbers:\n %f %.2f %e %E\n", fp, fp, fp, fp );
/* Display pointer. */
printf_s( "\nAddress as: %p\n", &count);
}
示例输出
Integer formats:
Decimal: -9234 Justified: -009234 Unsigned: 4294958062
Decimal -9234 as:
Hex: FFFFDBEEh C hex: 0xffffdbee Octal: 37777755756
Digits 10 equal:
Hex: 16 Octal: 8 Decimal: 10
Characters in field (1):
h h w w
Characters in field (2):
h h w w
Strings in field (1):
computer
comp
Unicode Uni
Strings in field (2):
computer
comp
Unicode Uni
Real numbers:
251.736600 251.74 2.517366e+002 2.517366E+002
Address as: 0012FF78
.NET Framework 等效项
请参见
参考
fprintf, _fprintf_l, fwprintf, _fwprintf_l
scanf, _scanf_l, wscanf, _wscanf_l