_printf_p, _printf_p_l, _wprintf_p, _wprintf_p_l

打印格式化输出到标准输出流,并且能够指定参数用于格式字符串的顺序。

int _printf_p(
   const char *format [,
   argument]... 
);
int _printf_p_l(
   const char *format,
   locale_t locale [,
   argument]... 
);
int _wprintf_p(
   const wchar_t *format [,
   argument]... 
);
int _wprintf_p_l(
   const wchar_t *format,
   locale_t locale [,
   argument]... 
);

参数

  • format
    窗体控件。

  • argument
    可选参数。

  • locale
    使用的区域设置。

返回值

如果发生错误,则返回字符打印的或负值的数字。

备注

_printf_p功能设置格式并打印一系列字符和值到标准输出流,stdout。 如果参数后面 format 字符串,format 字符串必须包含确保参数的输出格式的规范 (请参见" printf_p位置参数)。

在 _printf_p和 printf_s的不同之处在于 _printf_p支持位置参数,允许指定命令参数用于格式字符串。 有关更多信息,请参见printf_p位置参数

_wprintf_p 是 _printf_p的宽字符版本;,如果流在 ANSI 模式下,中打开它们具有相同的行为。 _printf_p 当前不支持输出到 UNICODE 流。

这些功能的版本与 _l 后缀的相同,只不过它们使用区域设置参数而不是当前线程区域设置。

安全说明安全说明

确保 format 不是用户定义的字符串。

如果 format 或 argument 是 NULL,或格式字符串包含无效格式字符,_printf_p 和 _wprintf_p 函数调用无效参数处理程序,如 参数验证所述。 如果执行允许继续,该函数返回 -1 并将 errno 到 EINVAL。

一般文本例程映射

Tchar.h 实例

未定义的_UNICODE 和_MBCS

定义的_MBCS

定义的_UNICODE

_tprintf_p

_printf_p

_printf_p

_wprintf_p

_tprintf_p_l

_printf_p_l

_printf_p_l

_wprintf_p_l

要求

实例

必需的标头

_printf_p, _printf_p_l

<stdio.h>

_wprintf_p, _wprintf_p_l

<stdio.h> 或 <wchar.h>

控件个在 Windows 应用商店 apps 不受支持。 标准流处理与控件个,stdin,stdout和 stderr,在 C 运行时函数在 Windows 应用商店 apps 之前,可以使用它们必须重定向。 有关更多兼容性信息,请参见中介绍的 兼容性

示例

// crt_printf_p.c
// This program uses the _printf_p and _wprintf_p
// functions to choose the order in which parameters
// are used.

#include <stdio.h>

int main( void )
{
   // Positional arguments 
   _printf_p( "Specifying the order: %2$s %3$s %1$s %4$s %5$s.\n",
              "little", "I'm", "a", "tea", "pot");

   // Resume arguments
   _wprintf_p( L"Reusing arguments: %1$d %1$d %1$d %1$d\n", 10);

   // Width argument
   _printf_p("Width specifiers: %1$*2$s", "Hello\n", 10);
}
     

.NET Framework 等效项

请参见

参考

浮点支持

流I/O

区域设置

fopen, _wfopen

_fprintf_p, _fprintf_p_l, _fwprintf_p, _fwprintf_p_l

fprintf, _fprintf_l, fwprintf, _fwprintf_l

fprintf_s, _fprintf_s_l, fwprintf_s, _fwprintf_s_l

scanf, _scanf_l, wscanf, _wscanf_l

scanf_s, _scanf_s_l, wscanf_s, _wscanf_s_l

_sprintf_p, _sprintf_p_l, _swprintf_p, _swprintf_p_l

sprintf, _sprintf_l, swprintf, _swprintf_l, __swprintf_l

sprintf_s, _sprintf_s_l, swprintf_s, _swprintf_s_l

vprintf功能