VC++ CLI 应用程序 32 - 64 位 CString 问题
所以,我正在将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
strlen 始终返回
size_t< /代码>。但是,size_t 在 64 位和 32 位操作系统上的宽度不同。
然而,
CString.left
需要一个 int。您的代码应该没问题(前提是您的字符串不会太长而超出 int 值),但编译器会警告您导致此问题。您可以使用强制转换来忽略该警告。如果你想“安全”,你可以通过添加检查来实现。
所需的演员阵容很简单:
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: