strcat_s、wcscat_s、_mbscat_s

追加一个字符串。 strcat、wcscat、_mbscat 的这些版本如 CRT 中的安全功能 所述,其安全得到了增强。

重要

_mbscat_s 不能用于在 Windows 运行时中执行的应用程序。有关详细信息,请参见 CRT functions not supported with /ZW(CRT 函数不支持使用/ZW)。

errno_t strcat_s(
   char *strDestination,
   size_t numberOfElements,
   const char *strSource 
);
errno_t wcscat_s(
   wchar_t *strDestination,
   size_t numberOfElements,
   const wchar_t *strSource 
);
errno_t _mbscat_s(
   unsigned char *strDestination,
   size_t numberOfElements,
   const unsigned char *strSource 
);
template <size_t size>
errno_t strcat_s(
   char (&strDestination)[size],
   const char *strSource 
); // C++ only
template <size_t size>
errno_t wcscat_s(
   wchar_t (&strDestination)[size],
   const wchar_t *strSource 
); // C++ only
template <size_t size>
errno_t _mbscat_s(
   unsigned char (&strDestination)[size],
   const unsigned char *strSource 
); // C++ only

参数

  • strDestination
    Null 终止的目标字符串缓冲区。

  • numberOfElements
    目标字符串缓冲区的大小。

  • strSource
    Null 终止的源字符串缓冲区。

返回值

如果成功,则为零;如果失败,则为错误代码。

错误情况

strDestination

numberOfElements

strSource

返回值

strDestination 的内容

NULL 或未终止

any

any

EINVAL

未修改

any

any

NULL

EINVAL

strDestination[0] 设置为 0

any

0,或太小

any

ERANGE

strDestination[0] 设置为 0

备注

strcat_s 功能追加 strSource 到 strDestination 并停止使用 null 字符的结果字符串。 strSource 的初始字符覆盖 strDestination终止 null 字符。 如果源和目标字符串重叠,则 strcat_s 的行为未定义。

注意第二个参数是缓冲区的总大小,而不是剩余的大小:

char buf[16];
strcpy_s(buf, 16, "Start");
strcat_s(buf, 16, " End");               // Correct
strcat_s(buf, 16 – strlen(buf), " End"); // Incorrect

wcscat_s 和 _mbscat_s 属于 strcat_s的宽字符和多字节字符版本。 参数和 wcscat_s 的返回值是宽字符字符串;_mbscat_s 的参数和返回值为多字节字符字符串。 否则这三个函数否则具有相同行为。

如果 strDestination 是 null 指针或不是 null 终止,或者如果 strSource 是 NULL 指针,或者,如果目标字符串过小,则无效参数调用处理程序,如 参数验证所述。 如果允许执行继续,则这些函数返回 EINVAL 并将 errno 设置为 EINVAL。

在 C++ 中,使用这些函数由模板重载简化;重载可以自动推导出缓冲区长度 (不再需要指定大小参数),并且它们可以自动用以更新、更安全的对应物替换旧的、不安全的函数。 有关详细信息,请参阅安全模板重载

这些函数的调试版本首先用 0xFD 填充缓冲区。 若要禁用此行为,请使用 _CrtSetDebugFillThreshold

一般文本例程映射

TCHAR.H 例程

未定义 _UNICODE & _MBCS

已定义 _MBCS

已定义 _UNICODE

_tcscat_s

strcat_s

_mbscat_s

wcscat_s

要求

例程

必需的标头

strcat_s

<string.h>

wcscat_s

<string.h> 或 <wchar.h>

_mbscat_s

<mbstring.h>

有关兼容性的更多信息,请参见兼容性

示例

请参见 strcpy_s、wcscpy_s、_mbscpy_s 中的代码实例。

.NET Framework 等效项

System::String::Concat

请参见

参考

字符串操作 (CRT)

strncat、_strncat_l、wcsncat、_wcsncat_l、_mbsncat、_mbsncat_l

strncmp、wcsncmp、_mbsncmp、_mbsncmp_l

strncpy、_strncpy_l、wcsncpy、_wcsncpy_l、_mbsncpy、_mbsncpy_l

_strnicmp、_wcsnicmp、_mbsnicmp、_strnicmp_l、_wcsnicmp_l、_mbsnicmp_l

strrchr、wcsrchr、_mbsrchr、_mbsrchr_l

strspn、wcsspn、_mbsspn、_mbsspn_l