It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center。
7年前关闭。
我是说在64位机上编程c/c++与32位机上编程的主要区别。很抱歉,如果这个问题有点主观,任何反馈都是值得赞赏的~
7年前关闭。
我是说在64位机上编程c/c++与32位机上编程的主要区别。很抱歉,如果这个问题有点主观,任何反馈都是值得赞赏的~
最佳答案
取决于体系结构和程序。如果您已经使用了C和C++在适用时提供的平台中立类型(size_t
,ptrdiff_t
等),没有对int
、long
等的大小进行假设,也没有尝试在int
变量和类似的黑客中存储指针,那么您应该是好的。
关于c++ - 在64位盒(c/c++)上编程时,我有什么要注意的地方吗? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8834904/
10-12 00:05