Abstract: What do you think about the question? Does the 64-bits always do better? The answer is NO.
So if you‘re dealing with numbers under 4 billion, and address memory of fewer than 4 GB, 64-bit processors won‘t actually make any difference to you.
64-bit is about the size, not speed.
Copied from https://www.quora.com/Why-is-a-64-bit-CPU-faster-than-32-bit-CPU
Background: Before the virtual memory came out, there is only have physical memory concept. In physical memory, here is a largely entire memory space, and people research algorithm for memory management. Something you may already know like first-fit, Best fit, worst fit, buddy‘s system, etc. Then we find a better thing to meet people‘s ambitions, it‘s virtual memory. By using virtual memory, we can abstract a memory for every process to guarantee security and independence, and make full use of physical fragments.
Does the 64-bit processor always perform better than 32-bits?
原文:https://www.cnblogs.com/gufana/p/12878190.html