What requires the most CPU:
int foo = 3;
or typecasting it to an unsigned int?
unsigned int foo = 3;
|
What requires the most CPU:
or typecasting it to an unsigned int?
|
|||||||||||||||||
|
|
My immediate thought is: it is not casting the int into unsigned int. So there is no difference in speed. hereis the link about the fast types. However it's more the algorithms which and functions which should be optimised rather than types. |
|||||||
|
|
They are both represented by the same bits in memory. It's just a question of how the bits are interpreted, which depends on the range of values you want. So, neither is more intensive. As for working with the numbers, taking the example of multiply: I'm no expert but according to wikipedia, in x86 there are opcodes for unsigned multiply ( |
|||
|
|
|
This is generated assembly in MS VC 2005:
No difference :) |
|||
|
|
|
There is no difference in CPU usage. In fact, you can almost guarantee that those declarations will compile to the same code. The only difference is that the compiler will remember whether the variable is |
||||
|
|
|
When you do division.
using |
|||
|
|
|
No difference. You can tell by looking at the generated assembly language. Even if there were a difference, you should be aware that this is micro-optimization, and the right time to think about that is after all the macro-optimization has been done, and that is your job, not the compiler's. |
|||
|
|
|
Declaring a plain |
|||
|
|
|
You won't normally notice any difference in practice, so in my opinion the best practice is to choose the type based on the application-specific semantics of the value it is supposed to represent: use unsigned types to represent unsigned quantities; same for signed. Although there are people who oppose this philosophy and prefer to use As for the actual performance, if you are still concerned about it, it, of course, depends on the compiler and hardware platform. One thing that comes to mind, for example, is that the semantics of signed integral division required by C/C++ (round towards zero) is often different from the semantics implemented by the hardware platform (round towards negative infinity), which means that for signed types the division might require more instructions (to adjust the result) than for unsigned types. There are other little quirks like that. But in any case, you won't notice it in practice. P.S. I don't know why you mention "typecasting" in your question, while the code sample that follows has no typecasting in it. |
|||
|
|