In Java or C++:
Which is better? To use short or int for numbers that go to the short Max value, from 0 to 65535 in the case of unsigned short in C++.
I heard something about using int is better by the processor registers...
|
You've mostly answered your own question. If you are concerned about space, use In, ahem, short, you need to measure your actual situation. |
|||
|
In C (and C++), "int" is defined as the natural word size for the processor. In many processors, there are significant gains to be had by using that natural word size, which is why C promotes most integer operations to "int" even if you're, say, adding two shorts. You should only use short if storage space is a premium. There was a time when Unix C compilers on many of the popular chips of the day, including the 386 used by a Sun 396i, used 32 bits for both longs and ints and 16 bits for shorts, while Windows on that same 386 used 32 bits for longs, but 16 bits for ints and shorts. I'm not sure what the justification for 16 bit ints on Windows was, but I assume the 32 bit ints on Sun OS on 386 was to be the same as on the other platforms running Sun OS (MC68020 and SPARC). In Java, because it's using a JVM and because they define the size of short and int to some extent, the considerations may be slightly different, but I'd still use int unless you have a need to use short. |
|||||
|
|
In Java, the only case where you would consider using It is possible that |
|||
|
|
Using numbers that correspond to the processor's word size is usually a little faster than the alternatives. Whereas a |
|||
|
|
|
well - what about choose the correct type based on program requirement first. If it has only two values, use boolean, and trust JVM in handling it efficiently. |
|||||
|
|
When designing structs (that includes classes, of course), space considerations are far more important than in the automatic scope (within a function), as structures make up the obvious majority of memory usage in a program. In that case, it is often better to use shorts or chars instead of ints whenever possible, as memory usage is usually more important than speed. Although Also, don't worry about optimization in Java. It's gonna be bloated anyway :P |
|||||||||||||
|
|
The following assumes a compiler with cstdint. For from 0 to 65535 I'd use uint16_fast_t if you are concerned about speed and uint16_t if you are concerned about space. |
|||
|
|
|
Basically ditto bmargulies. Let me just add that space is only a serious consideration if you have LOTS of numbers to store, like a large array or collection of some sort. If you've talking about the ordinary handful of individual variables you have ina typical program -- what, maybe a dozen or so? -- the few bytes saved is not going to matter. I don't worry about the space saving until I start pondering something like "int[10000]" versus "short[10000]". Java routinely converts shorts to ints to do arithmetic. I'd have to check the bytecode, but I suspect there would have to be some extra operations to do the conversion, which will take a few bytes to express, so you may paradoxically actually take more space to use a short! |
|||
|
|
short. There is no restriction against having ashortthe same size as anint. – Thomas Matthews Dec 15 '09 at 18:50