如何用C和MinGW连接两个字符串?

发布于 2025-01-03 06:42:45 字数 608 浏览 2 评论 0原文

如何使用 GCC 在 MinGW 中连接(甚至分配)两个字符串(我猜是 TCHAR 数组)?

  • StrCatBuff
    #include-lshlwapi 可以工作,但您不应该使用它
  • _tcscat
    似乎不存在
  • StringCchCat
    似乎不存在。 strsafe.h 不存在。

这同样适用于它们各自的赋值函数,例如 StringCchCpy_tcscpy

How do I concatenate (or even assign) two strings (TCHAR arrays, I guess) in MinGW with GCC?

  • StrCatBuff?
    #include <shlwapi.h> and -lshlwapi do work, but you're not supposed to use it
  • _tcscat?
    Seems not to exist
  • StringCchCat
    Seems not to exist. strsafe.h doesn't exist.

The same holds true for their respective assignment functions like StringCchCpy and _tcscpy.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

豆芽 2025-01-10 06:42:45

_tcscat(或“安全”版本, _tcscat_s) 对于连接 TCHAR 数组来说效果很好。您必须包含 tchar.h 才能使用这两个函数。

对于 StringCchCat 来说也是如此,正如您提到的,它是在 strsafe.h 中定义的。

如果您缺少这些头文件,请确保您已安装 Windows SDK。它可能不像 Microsoft 工具那样默认包​​含在 MinGW 中。

_tcscat (or the "secure" version, _tcscat_s) works just fine for concatenating arrays of TCHARs. You have to include tchar.h in order to use either of these functions.

The same should be true for StringCchCat, which as you mention is defined in strsafe.h.

If you're missing these header files, make sure that you've installed the Windows SDK. It's probably not included by default with MinGW like it is with Microsoft's tooling.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文