_scprintf、_scprintf_l、_scwprintf、_scwprintf_l

返回 formatted string 中的字符数。

int _scprintf(
   const char *format [,
   argument] ... 
);
int _scprintf_l(
   const char *format,
   locale_t locale [,
   argument] ... 
);
int _scwprintf(
   const wchar_t *format [,
   argument] ... 
);
int _scwprintf_l(
   const wchar_t *format,
   locale_t locale [,
   argument] ... 
);

参数

  • format
    窗体控件字符串。

  • argument
    可选参数。

  • locale
    要使用的区域设置。

有关更多信息,请参见格式规范

返回值

返回使用指定的格式代码生成字符数,如果字符串将打印或发送到文件或缓冲区。 返回的值不包括终止空字符。 _scwprintf 为宽字符实现相同的函数。

如果 format 是一个 NULL 指针,无效参数处理程序将按 参数验证 中所述进行调用。 如果允许执行继续,则这些函数返回 -1 并将 errno 设置为 EINVAL。

有关这些内容以及其他错误代码的详细信息,请参阅 _doserrno、errno、_sys_errlist 和 _sys_nerr

备注

每个 argument(如果有)根据 format 中相应的格式规范进行转换。 该格式包括普通字符,其形式和函数与 printf 的 format 参数相同。

这些带有 _l 后缀的函数的版本相同,只不过它们使用传递的区域设置参数而不是当前线程区域设置。

安全说明安全说明

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

一般文本例程映射

Tchar.h 例程

未定义 _UNICODE 和 _MBCS

已定义 _MBCS

已定义 _UNICODE

_sctprintf

_scprintf

_scprintf

_scwprintf

_sctprintf_l

_scprintf_l

_scprintf_l

_scwprintf_l

要求

例程

必需的标头

_scprintf, _scprintf_l

<stdio.h>

_scwprintf, _scwprintf_l

<stdio.h> 或 <wchar.h>

有关更多兼容性信息,请参见“简介”中的兼容性

示例

// crt__scprintf.c

#define _USE_MATH_DEFINES

#include <stdio.h>
#include <math.h>
#include <malloc.h>

int main( void )
{
   int count;
   int size;
   char *s = NULL;

   count = _scprintf( "The value of Pi is calculated to be %f.\n",
                      M_PI);

   size = count + 1; // the string will need one more char for the null terminator
   s = malloc(sizeof(char) * size);
   sprintf_s(s, size, "The value of Pi is calculated to be %f.\n",
                      M_PI);
   printf("The length of the following string will be %i.\n", count);
   printf("%s", s);
   free( s );
}
  

请参见

参考

流 I/O

fprintf、_fprintf_l、fwprintf、_fwprintf_l

printf、_printf_l、wprintf、_wprintf_l

scanf、_scanf_l、wscanf、_wscanf_l

sscanf、_sscanf_l、swscanf、_swscanf_l

vprintf 函数