VC++ CLI 应用程序 32 - 64 位 CString 问题

发布于 2024-08-06 09:38:09 字数 274 浏览 4 评论 0原文

所以,我正在将 32 位应用程序的端口解析为 64 位。当我编译 x64 时,我看到该行出现警告 ` CString 信号; sig =“某事”; sig = sig.left(strlen(定义的东西)); <<<<<<<<

` 因此,我收到 sig.left 的警告,它隐式地将 strlen 值转换为 int。由于在 x64 中 strlen 返回 64 位 size_t,因此我收到警告。我有什么解决这个问题的选择..有什么替代方法吗?

谢谢

SO, I am in the process of resolving the port of a 32bit app to 64 bit. When I compile for x64 I see a warning come up for the line
`
CString sig;
sig = "something";
sig = sig.left(strlen(something defined)); <<<<<<

`
So, I get the warning for the sig.left where it implicitly converts the strlen value to int. Since in x64 strlen returns the 64bit size_t, i am getting the warning. what are my options of fixing this.. any alternate method ?

Thanks

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

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

发布评论

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

评论(1

鸠魁 2024-08-13 09:38:09

strlen 始终返回 size_t< /代码>。但是,size_t 在 64 位和 32 位操作系统上的宽度不同。

然而,CString.left 需要一个 int。您的代码应该没问题(前提是您的字符串不会太长而超出 int 值),但编译器会警告您导致此问题。

您可以使用强制转换来忽略该警告。如果你想“安全”,你可以通过添加检查来实现。

所需的演员阵容很简单:

CString sig; 
sig = "something"; 
sig = sig.left((int)strlen(something_defined));

strlen always returns size_t. However, size_t is a different width on 64bit and 32bit operating systems.

CString.left, however, expects an int. Your code should be fine (provided your strings won't be too long to overrun an int value), but the compiler will warn you that you're causing this problem.

You can ignore the warning by using a cast. If you wanted to be "safe", you could do so by adding checking.

The required cast would be as simple as:

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