在 64 位机器 (c/c++) 上编程时有什么需要注意的地方吗?

发布于 2024-12-26 13:14:36 字数 68 浏览 0 评论 0原文

我的意思是在 64 位机器上与 32 位机器上进行 c/c++ 编程的主要区别。抱歉,如果这个问题有点主观,欢迎任何反馈~

I mean the main differences to program c/c++ on 64 bit box from 32 bit box. Sorry if this question is somewhat subjective and any feedbacks are appreciated~

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

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

发布评论

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

评论(1

奶气 2025-01-02 13:14:36

取决于架构和程序。如果您一直在使用 C 和 C++ 在适用时提供的平台中立类型(size_tptrdiff_t 等),则尚未对 < 的大小做出假设code>int、long 等,并且没有尝试过将指针存储在 int 变量和类似的 hack 中,那么你应该没问题。

Depends on the architecture and the program. If you've been using the platform-neutral types that C and C++ offer when applicable (size_t, ptrdiff_t, etc.), have not made assumptions regarding the size of int, long, etc., and have not tried to store pointers in int variables and similar hacks, then you should be fine.

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