在 64 位机器 (c/c++) 上编程时有什么需要注意的地方吗?
我的意思是在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
取决于架构和程序。如果您一直在使用 C 和 C++ 在适用时提供的平台中立类型(
size_t
、ptrdiff_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 ofint
,long
, etc., and have not tried to store pointers inint
variables and similar hacks, then you should be fine.