In terms of runtime performance, how expensive it is to cast int to short in Java? There may be thousands of such casting, hence I wonder if it would impact the performance or not. Thanks.
|
|
No. It won't impact performances. It is a single simple operation. When you want to analize performances of a software you better focus on the computational cost of algorithmic operations based on the size of input. |
|||
|
|
|
You can neglect the cost of that cast. You won't notice thousands of such casts. |
|||
|
|
|
I think the safe practice is to not worry about performance until you have a performance problem. And when you do have a performance problem, it's extremely likely that in most business applications the majority of an applications sluggishness can be accounted for in its interactions with the disk and/or network. I think it's very unlikely that micro optimizations like this will have much of an impact on your performance. |
|||||||||||
|
|
Why do you need to do this? I do not think that it would effect performance that much, but keep in mind the range of the data type you need:
|
||||
|
|
|
The cast is small compared with loading a int from memory or storing a short. In any case they all cost about 2 nano-second. If you do thousands of these it will cost a few micro-seconds. |
|||
|
|